# Logfile created on 2023-09-28 05:35:25 +0000 by logger.rb/v1.4.3 #<BuildRuby:0x000055630a1da278 @REPOSITORY="https://github.com/ruby/ruby.git", @REPOSITORY_TYPE=:git, @git_branch=nil, @git_worktree=nil, @svn_revision=nil, @SRC_DIR="/tmp/ruby/src", @BUILD_DIR="/tmp/ruby/build", @INSTALL_DIR="/tmp/ruby/install", @TARGET_NAME="trunk-repeat50", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-repeat50", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-repeat50", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-repeat50", @configure_opts=["--enable-shared"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS=--repeat-count=50", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=208000, @logfile="/home/ko1/ruby/logs/brlog.trunk-repeat50.20230928-053525", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x000055630a263500 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x000055630a263398 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x000055630a2631e0 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-repeat50.20230928-053525", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-repeat50.20230928-053525>, @binmode=false, @mon_data=#<Monitor:0x000055630a263118>, @mon_data_owner_object_id=860>>> $$$[beg] make update-unicode -j4 make: Nothing to be done for 'update-unicode'. $$$[end] "make update-unicode -j4" exit with 0. $$$[beg] make update-download -j4 tool/config.guess already exists tool/config.sub already exists Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 From https://github.com/ruby/debug * branch 927587afb6aac69b358b86a01f602d207053e8d2 -> FETCH_HEAD HEAD is now at 927587a Stop assuming Integer#times is written in C echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged $$$[end] "make update-download -j4" exit with 0. $$$[beg] make update-rubyspec -j4 make: Nothing to be done for 'update-rubyspec'. $$$[end] "make update-rubyspec -j4" exit with 0. $$$[beg] make update-src -j4 From https://github.com/ruby/ruby 50520cc1..e9bc5196 master -> origin/master Updating 50520cc1..e9bc5196 Fast-forward .github/workflows/ubuntu.yml | 4 +- .gitignore | 24 +- NEWS.md | 5 +- ast.c | 225 +- common.mk | 2394 ++--- compile.c | 947 +- ext/objspace/objspace.c | 4 + ext/ripper/ripper_init.c.tmpl | 5 +- gems/bundled_gems | 4 +- inits.c | 2 +- iseq.c | 45 +- lib/open3.rb | 144 +- lib/prism.rb | 64 + lib/prism/debug.rb | 157 + .../desugar_compiler.rb} | 6 +- lib/{yarp => prism}/ffi.rb | 116 +- lib/{yarp => prism}/lex_compat.rb | 82 +- lib/prism/node_ext.rb | 55 + lib/prism/node_inspector.rb | 68 + lib/{yarp => prism}/pack.rb | 2 +- lib/prism/parse_result.rb | 266 + lib/{yarp => prism}/parse_result/comments.rb | 2 +- lib/{yarp => prism}/parse_result/newlines.rb | 2 +- lib/{yarp => prism}/pattern.rb | 26 +- lib/prism/prism.gemspec | 113 + lib/{yarp => prism}/ripper_compat.rb | 10 +- lib/yarp.rb | 619 -- lib/yarp/language_server.rb | 166 - lib/yarp/version.rb | 5 - lib/yarp/yarp.gemspec | 105 - node.c | 203 +- node.h | 36 +- node_dump.c | 414 +- parse.y | 2651 ++++- parser_node.h | 101 - {yarp => prism}/api_pack.c | 164 +- {yarp => prism}/config.yml | 8 +- prism/defines.h | 45 + prism/diagnostic.c | 285 + prism/diagnostic.h | 229 + prism/enc/pm_big5.c | 52 + yarp/enc/yp_encoding.h => prism/enc/pm_encoding.h | 80 +- prism/enc/pm_euc_jp.c | 58 + yarp/enc/yp_gbk.c => prism/enc/pm_gbk.c | 32 +- prism/enc/pm_shift_jis.c | 56 + yarp/enc/yp_tables.c => prism/enc/pm_tables.c | 138 +- yarp/enc/yp_unicode.c => prism/enc/pm_unicode.c | 80 +- prism/enc/pm_windows_31j.c | 56 + {yarp => prism}/extension.c | 340 +- prism/extension.h | 18 + prism/node.h | 41 + prism/pack.c | 493 + prism/pack.h | 141 + {yarp => prism}/parser.h | 285 +- yarp/yarp.c => prism/prism.c | 10130 +++++++++---------- prism/prism.h | 82 + yarp/yarp_compiler.c => prism/prism_compiler.c | 1209 +-- prism/prism_init.c | 9 + {yarp => prism}/regexp.c | 264 +- prism/regexp.h | 19 + .../templates/ext/prism}/api_node.c.erb | 137 +- prism/templates/include/prism/ast.h.erb | 116 + prism/templates/lib/prism/compiler.rb.erb | 41 + prism/templates/lib/prism/dispatcher.rb.erb | 88 + prism/templates/lib/prism/dsl.rb.erb | 45 + .../templates/lib/prism/mutation_compiler.rb.erb | 8 +- .../yarp => prism/templates/lib/prism}/node.rb.erb | 192 +- .../templates/lib/prism}/serialize.rb.erb | 30 +- prism/templates/lib/prism/visitor.rb.erb | 46 + prism/templates/src/node.c.erb | 157 + prism/templates/src/prettyprint.c.erb | 111 + prism/templates/src/serialize.c.erb | 299 + {yarp => prism}/templates/src/token_type.c.erb | 10 +- {yarp => prism}/templates/template.rb | 38 +- {yarp => prism}/unescape.c | 182 +- prism/unescape.h | 48 + prism/util/pm_buffer.c | 103 + prism/util/pm_buffer.h | 51 + yarp/util/yp_char.c => prism/util/pm_char.c | 144 +- yarp/util/yp_char.h => prism/util/pm_char.h | 40 +- .../util/pm_constant_pool.c | 118 +- .../util/pm_constant_pool.h | 44 +- yarp/util/yp_list.c => prism/util/pm_list.c | 20 +- yarp/util/yp_list.h => prism/util/pm_list.h | 42 +- yarp/util/yp_memchr.c => prism/util/pm_memchr.c | 10 +- prism/util/pm_memchr.h | 14 + .../util/pm_newline_list.c | 42 +- .../util/pm_newline_list.h | 22 +- .../util/pm_state_stack.c | 8 +- prism/util/pm_state_stack.h | 24 + yarp/util/yp_string.c => prism/util/pm_string.c | 76 +- yarp/util/yp_string.h => prism/util/pm_string.h | 40 +- prism/util/pm_string_list.c | 29 + prism/util/pm_string_list.h | 25 + .../util/pm_strncasecmp.c | 2 +- yarp/util/yp_strpbrk.c => prism/util/pm_strpbrk.c | 16 +- yarp/util/yp_strpbrk.h => prism/util/pm_strpbrk.h | 14 +- prism/version.h | 4 + process.c | 16 +- ruby_parser.c | 2 +- rubyparser.h | 1123 +- test/{yarp => prism}/bom_test.rb | 4 +- test/{yarp => prism}/comments_test.rb | 6 +- test/prism/compiler_test.rb | 30 + .../desugar_compiler_test.rb} | 10 +- test/{yarp => prism}/dispatcher_test.rb | 4 +- test/{yarp => prism}/encoding_test.rb | 18 +- test/{yarp => prism}/errors_test.rb | 10 +- test/{yarp => prism}/fixtures/alias.txt | 0 test/{yarp => prism}/fixtures/arithmetic.txt | 0 test/{yarp => prism}/fixtures/arrays.txt | 0 test/{yarp => prism}/fixtures/begin_ensure.txt | 0 test/{yarp => prism}/fixtures/begin_rescue.txt | 0 test/{yarp => prism}/fixtures/blocks.txt | 0 .../{yarp => prism}/fixtures/boolean_operators.txt | 0 test/{yarp => prism}/fixtures/booleans.txt | 0 test/{yarp => prism}/fixtures/break.txt | 0 test/{yarp => prism}/fixtures/case.txt | 0 test/{yarp => prism}/fixtures/classes.txt | 0 test/{yarp => prism}/fixtures/comments.txt | 0 test/{yarp => prism}/fixtures/constants.txt | 0 test/{yarp => prism}/fixtures/dash_heredocs.txt | 0 test/{yarp => prism}/fixtures/defined.txt | 0 test/{yarp => prism}/fixtures/dos_endings.txt | 0 .../fixtures/embdoc_no_newline_at_end.txt | 0 test/{yarp => prism}/fixtures/endless_methods.txt | 0 .../fixtures/endless_range_in_conditional.txt | 0 test/{yarp => prism}/fixtures/for.txt | 0 test/{yarp => prism}/fixtures/global_variables.txt | 0 test/{yarp => prism}/fixtures/hashes.txt | 0 .../heredoc_with_escaped_newline_at_start.txt | 0 .../fixtures/heredoc_with_trailing_newline.txt | 0 test/{yarp => prism}/fixtures/heredocs_nested.txt | 0 .../fixtures/heredocs_with_ignored_newlines.txt | 0 ...eredocs_with_ignored_newlines_and_non_empty.txt | 0 test/{yarp => prism}/fixtures/if.txt | 0 .../{yarp => prism}/fixtures/indented_file_end.txt | 0 .../fixtures/integer_operations.txt | 0 .../fixtures/keyword_method_names.txt | 0 test/{yarp => prism}/fixtures/keywords.txt | 0 test/{yarp => prism}/fixtures/lambda.txt | 0 test/{yarp => prism}/fixtures/method_calls.txt | 0 test/{yarp => prism}/fixtures/methods.txt | 0 test/{yarp => prism}/fixtures/modules.txt | 0 .../fixtures/newline_terminated.txt | Bin test/{yarp => prism}/fixtures/next.txt | 0 test/{yarp => prism}/fixtures/nils.txt | 0 .../fixtures/non_alphanumeric_methods.txt | 0 test/{yarp => prism}/fixtures/not.txt | 0 test/{yarp => prism}/fixtures/numbers.txt | 0 test/{yarp => prism}/fixtures/patterns.txt | 0 test/{yarp => prism}/fixtures/procs.txt | 0 .../fixtures/range_begin_open_exclusive.txt | 0 .../fixtures/range_begin_open_inclusive.txt | 0 .../fixtures/range_end_open_exclusive.txt | 0 .../fixtures/range_end_open_inclusive.txt | 0 test/{yarp => prism}/fixtures/ranges.txt | 0 test/{yarp => prism}/fixtures/regex.txt | 0 test/{yarp => prism}/fixtures/rescue.txt | 0 test/{yarp => prism}/fixtures/return.txt | 0 test/{yarp => prism}/fixtures/seattlerb/BEGIN.txt | 0 .../{yarp => prism}/fixtures/seattlerb/README.rdoc | 0 .../fixtures/seattlerb/TestRubyParserShared.txt | 0 .../fixtures/seattlerb/__ENCODING__.txt | 0 .../fixtures/seattlerb/alias_gvar_backref.txt | 0 .../fixtures/seattlerb/alias_resword.txt | 0 .../fixtures/seattlerb/and_multi.txt | 0 .../fixtures/seattlerb/aref_args_assocs.txt | 0 .../fixtures/seattlerb/aref_args_lit_assocs.txt | 0 .../fixtures/seattlerb/args_kw_block.txt | 0 .../fixtures/seattlerb/array_line_breaks.txt | 0 .../seattlerb/array_lits_trailing_calls.txt | 0 .../fixtures/seattlerb/assoc__bare.txt | 0 .../fixtures/seattlerb/assoc_label.txt | 0 .../fixtures/seattlerb/attr_asgn_colon_id.txt | 0 .../fixtures/seattlerb/attrasgn_array_arg.txt | 0 .../fixtures/seattlerb/attrasgn_array_lhs.txt | 0 .../seattlerb/attrasgn_primary_dot_constant.txt | 0 .../seattlerb/backticks_interpolation_line.txt | 0 .../{yarp => prism}/fixtures/seattlerb/bang_eq.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bdot2.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bdot3.txt | 0 .../fixtures/seattlerb/begin_ensure_no_bodies.txt | 0 .../seattlerb/begin_rescue_else_ensure_bodies.txt | 0 .../begin_rescue_else_ensure_no_bodies.txt | 0 .../seattlerb/begin_rescue_ensure_no_bodies.txt | 0 .../fixtures/seattlerb/block_arg__bare.txt | 0 .../fixtures/seattlerb/block_arg_kwsplat.txt | 0 .../fixtures/seattlerb/block_arg_opt_arg_block.txt | 0 .../fixtures/seattlerb/block_arg_opt_splat.txt | 0 .../block_arg_opt_splat_arg_block_omfg.txt | 0 .../fixtures/seattlerb/block_arg_optional.txt | 0 .../fixtures/seattlerb/block_arg_scope.txt | 0 .../fixtures/seattlerb/block_arg_scope2.txt | 0 .../fixtures/seattlerb/block_arg_splat_arg.txt | 0 .../fixtures/seattlerb/block_args_kwargs.txt | 0 .../fixtures/seattlerb/block_args_no_kwargs.txt | 0 .../fixtures/seattlerb/block_args_opt1.txt | 0 .../fixtures/seattlerb/block_args_opt2.txt | 0 .../fixtures/seattlerb/block_args_opt2_2.txt | 0 .../fixtures/seattlerb/block_args_opt3.txt | 0 .../fixtures/seattlerb/block_break.txt | 0 .../seattlerb/block_call_defn_call_block_call.txt | 0 .../seattlerb/block_call_dot_op2_brace_block.txt | 0 .../block_call_dot_op2_cmd_args_do_block.txt | 0 .../seattlerb/block_call_operation_colon.txt | 0 .../seattlerb/block_call_operation_dot.txt | 0 .../seattlerb/block_call_paren_call_block_call.txt | 0 .../seattlerb/block_command_operation_colon.txt | 0 .../seattlerb/block_command_operation_dot.txt | 0 .../seattlerb/block_decomp_anon_splat_arg.txt | 0 .../fixtures/seattlerb/block_decomp_arg_splat.txt | 0 .../seattlerb/block_decomp_arg_splat_arg.txt | 0 .../fixtures/seattlerb/block_decomp_splat.txt | 0 .../fixtures/seattlerb/block_kw.txt | 0 .../fixtures/seattlerb/block_kw__required.txt | 0 .../fixtures/seattlerb/block_kwarg_lvar.txt | 0 .../seattlerb/block_kwarg_lvar_multiple.txt | 0 .../fixtures/seattlerb/block_next.txt | 0 .../fixtures/seattlerb/block_opt_arg.txt | 0 .../fixtures/seattlerb/block_opt_splat.txt | 0 .../seattlerb/block_opt_splat_arg_block_omfg.txt | 0 .../fixtures/seattlerb/block_optarg.txt | 0 .../fixtures/seattlerb/block_paren_splat.txt | 0 .../fixtures/seattlerb/block_reg_optarg.txt | 0 .../fixtures/seattlerb/block_return.txt | 0 .../fixtures/seattlerb/block_scope.txt | 0 .../fixtures/seattlerb/block_splat_reg.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug169.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug179.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug190.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug191.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug202.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug236.txt | 0 test/{yarp => prism}/fixtures/seattlerb/bug290.txt | 0 .../{yarp => prism}/fixtures/seattlerb/bug_187.txt | 0 .../{yarp => prism}/fixtures/seattlerb/bug_215.txt | 0 .../{yarp => prism}/fixtures/seattlerb/bug_249.txt | 0 .../{yarp => prism}/fixtures/seattlerb/bug_and.txt | 0 .../fixtures/seattlerb/bug_args__19.txt | 0 .../fixtures/seattlerb/bug_args_masgn.txt | 0 .../fixtures/seattlerb/bug_args_masgn2.txt | 0 .../seattlerb/bug_args_masgn_outer_parens__19.txt | 0 .../fixtures/seattlerb/bug_call_arglist_parens.txt | 0 .../fixtures/seattlerb/bug_case_when_regexp.txt | 0 .../fixtures/seattlerb/bug_comma.txt | 0 .../fixtures/seattlerb/bug_cond_pct.txt | 0 .../fixtures/seattlerb/bug_hash_args.txt | 0 .../seattlerb/bug_hash_args_trailing_comma.txt | 0 .../fixtures/seattlerb/bug_hash_interp_array.txt | 0 .../fixtures/seattlerb/bug_masgn_right.txt | 0 .../fixtures/seattlerb/bug_not_parens.txt | 0 .../fixtures/seattlerb/bug_op_asgn_rescue.txt | 0 .../fixtures/seattlerb/call_and.txt | 0 .../fixtures/seattlerb/call_arg_assoc.txt | 0 .../fixtures/seattlerb/call_arg_assoc_kwsplat.txt | 0 .../fixtures/seattlerb/call_arg_kwsplat.txt | 0 .../fixtures/seattlerb/call_args_assoc_quoted.txt | 0 .../seattlerb/call_args_assoc_trailing_comma.txt | 0 .../fixtures/seattlerb/call_args_command.txt | 0 .../fixtures/seattlerb/call_array_arg.txt | 0 .../fixtures/seattlerb/call_array_block_call.txt | 0 .../seattlerb/call_array_lambda_block_call.txt | 0 .../seattlerb/call_array_lit_inline_hash.txt | 0 .../fixtures/seattlerb/call_assoc.txt | 0 .../fixtures/seattlerb/call_assoc_new.txt | 0 .../seattlerb/call_assoc_new_if_multiline.txt | 0 .../seattlerb/call_assoc_trailing_comma.txt | 0 .../fixtures/seattlerb/call_bang_command_call.txt | 0 .../fixtures/seattlerb/call_bang_squiggle.txt | 0 .../seattlerb/call_begin_call_block_call.txt | 0 .../fixtures/seattlerb/call_block_arg_named.txt | 0 .../fixtures/seattlerb/call_carat.txt | 0 .../fixtures/seattlerb/call_colon2.txt | 0 .../fixtures/seattlerb/call_colon_parens.txt | 0 .../fixtures/seattlerb/call_div.txt | 0 .../fixtures/seattlerb/call_dot_parens.txt | 0 .../fixtures/seattlerb/call_env.txt | 0 .../fixtures/seattlerb/call_eq3.txt | 0 .../{yarp => prism}/fixtures/seattlerb/call_gt.txt | 0 .../fixtures/seattlerb/call_kwsplat.txt | 0 .../fixtures/seattlerb/call_leading_dots.txt | 0 .../seattlerb/call_leading_dots_comment.txt | 0 .../{yarp => prism}/fixtures/seattlerb/call_lt.txt | 0 .../fixtures/seattlerb/call_lte.txt | 0 .../fixtures/seattlerb/call_not.txt | 0 .../fixtures/seattlerb/call_pipe.txt | 0 .../fixtures/seattlerb/call_rshift.txt | 0 .../fixtures/seattlerb/call_self_brackets.txt | 0 .../fixtures/seattlerb/call_spaceship.txt | 0 .../seattlerb/call_stabby_do_end_with_block.txt | 0 .../seattlerb/call_stabby_with_braces_block.txt | 0 .../fixtures/seattlerb/call_star.txt | 0 .../fixtures/seattlerb/call_star2.txt | 0 .../fixtures/seattlerb/call_trailing_comma.txt | 0 .../fixtures/seattlerb/call_trailing_dots.txt | 0 .../fixtures/seattlerb/call_unary_bang.txt | 0 .../{yarp => prism}/fixtures/seattlerb/case_in.txt | 0 .../fixtures/seattlerb/case_in_31.txt | 0 .../fixtures/seattlerb/case_in_37.txt | 0 .../fixtures/seattlerb/case_in_42.txt | 0 .../fixtures/seattlerb/case_in_42_2.txt | 0 .../fixtures/seattlerb/case_in_47.txt | 0 .../fixtures/seattlerb/case_in_67.txt | 0 .../fixtures/seattlerb/case_in_86.txt | 0 .../fixtures/seattlerb/case_in_86_2.txt | 0 .../fixtures/seattlerb/case_in_array_pat_const.txt | 0 .../seattlerb/case_in_array_pat_const2.txt | 0 .../seattlerb/case_in_array_pat_paren_assign.txt | 0 .../fixtures/seattlerb/case_in_const.txt | 0 .../fixtures/seattlerb/case_in_else.txt | 0 .../fixtures/seattlerb/case_in_find.txt | 0 .../fixtures/seattlerb/case_in_find_array.txt | 0 .../fixtures/seattlerb/case_in_hash_pat.txt | 0 .../fixtures/seattlerb/case_in_hash_pat_assign.txt | 0 .../seattlerb/case_in_hash_pat_paren_assign.txt | 0 .../seattlerb/case_in_hash_pat_paren_true.txt | 0 .../fixtures/seattlerb/case_in_hash_pat_rest.txt | 0 .../seattlerb/case_in_hash_pat_rest_solo.txt | 0 .../seattlerb/case_in_if_unless_post_mod.txt | 0 .../fixtures/seattlerb/case_in_multiple.txt | 0 .../fixtures/seattlerb/case_in_or.txt | 0 .../fixtures/seattlerb/class_comments.txt | 0 .../fixtures/seattlerb/cond_unary_minus.txt | 0 .../fixtures/seattlerb/const_2_op_asgn_or2.txt | 0 .../fixtures/seattlerb/const_3_op_asgn_or.txt | 0 .../fixtures/seattlerb/const_op_asgn_and1.txt | 0 .../fixtures/seattlerb/const_op_asgn_and2.txt | 0 .../fixtures/seattlerb/const_op_asgn_or.txt | 0 .../fixtures/seattlerb/dasgn_icky2.txt | 0 .../fixtures/seattlerb/defined_eh_parens.txt | 0 .../fixtures/seattlerb/defn_arg_asplat_arg.txt | 0 .../fixtures/seattlerb/defn_arg_forward_args.txt | 0 .../fixtures/seattlerb/defn_args_forward_args.txt | 0 .../fixtures/seattlerb/defn_comments.txt | 0 .../fixtures/seattlerb/defn_endless_command.txt | 0 .../seattlerb/defn_endless_command_rescue.txt | 0 .../fixtures/seattlerb/defn_forward_args.txt | 0 .../seattlerb/defn_forward_args__no_parens.txt | 0 .../fixtures/seattlerb/defn_kwarg_env.txt | 0 .../fixtures/seattlerb/defn_kwarg_kwarg.txt | 0 .../fixtures/seattlerb/defn_kwarg_kwsplat.txt | 0 .../fixtures/seattlerb/defn_kwarg_kwsplat_anon.txt | 0 .../fixtures/seattlerb/defn_kwarg_lvar.txt | 0 .../fixtures/seattlerb/defn_kwarg_no_parens.txt | 0 .../fixtures/seattlerb/defn_kwarg_val.txt | 0 .../fixtures/seattlerb/defn_no_kwargs.txt | 0 .../fixtures/seattlerb/defn_oneliner.txt | 0 .../fixtures/seattlerb/defn_oneliner_eq2.txt | 0 .../fixtures/seattlerb/defn_oneliner_noargs.txt | 0 .../seattlerb/defn_oneliner_noargs_parentheses.txt | 0 .../fixtures/seattlerb/defn_oneliner_rescue.txt | 0 .../fixtures/seattlerb/defn_opt_last_arg.txt | 0 .../fixtures/seattlerb/defn_opt_reg.txt | 0 .../fixtures/seattlerb/defn_opt_splat_arg.txt | 0 .../fixtures/seattlerb/defn_powarg.txt | 0 .../fixtures/seattlerb/defn_reg_opt_reg.txt | 0 .../fixtures/seattlerb/defn_splat_arg.txt | 0 .../fixtures/seattlerb/defn_unary_not.txt | 0 .../fixtures/seattlerb/defns_reserved.txt | 0 .../seattlerb/defs_as_arg_with_do_block_inside.txt | 0 .../fixtures/seattlerb/defs_comments.txt | 0 .../fixtures/seattlerb/defs_endless_command.txt | 0 .../seattlerb/defs_endless_command_rescue.txt | 0 .../fixtures/seattlerb/defs_kwarg.txt | 0 .../fixtures/seattlerb/defs_oneliner.txt | 0 .../fixtures/seattlerb/defs_oneliner_eq2.txt | 0 .../fixtures/seattlerb/defs_oneliner_rescue.txt | 0 .../fixtures/seattlerb/difficult0_.txt | 0 .../fixtures/seattlerb/difficult1_line_numbers.txt | 0 .../seattlerb/difficult1_line_numbers2.txt | 0 .../fixtures/seattlerb/difficult2_.txt | 0 .../fixtures/seattlerb/difficult3_.txt | 0 .../fixtures/seattlerb/difficult3_2.txt | 0 .../fixtures/seattlerb/difficult3_3.txt | 0 .../fixtures/seattlerb/difficult3_4.txt | 0 .../fixtures/seattlerb/difficult3_5.txt | 0 .../fixtures/seattlerb/difficult3__10.txt | 0 .../fixtures/seattlerb/difficult3__11.txt | 0 .../fixtures/seattlerb/difficult3__12.txt | 0 .../fixtures/seattlerb/difficult3__6.txt | 0 .../fixtures/seattlerb/difficult3__7.txt | 0 .../fixtures/seattlerb/difficult3__8.txt | 0 .../fixtures/seattlerb/difficult3__9.txt | 0 .../seattlerb/difficult4__leading_dots.txt | 0 .../seattlerb/difficult4__leading_dots2.txt | 0 .../fixtures/seattlerb/difficult6_.txt | 0 .../fixtures/seattlerb/difficult6__7.txt | 0 .../fixtures/seattlerb/difficult6__8.txt | 0 .../fixtures/seattlerb/difficult7_.txt | 0 test/{yarp => prism}/fixtures/seattlerb/do_bug.txt | 0 .../fixtures/seattlerb/do_lambda.txt | 0 .../fixtures/seattlerb/dot2_nil__26.txt | 0 .../fixtures/seattlerb/dot3_nil__26.txt | 0 .../fixtures/seattlerb/dstr_evstr.txt | 0 .../fixtures/seattlerb/dstr_evstr_empty_end.txt | 0 .../fixtures/seattlerb/dstr_lex_state.txt | 0 .../fixtures/seattlerb/dstr_str.txt | 0 .../fixtures/seattlerb/dsym_esc_to_sym.txt | 0 .../fixtures/seattlerb/dsym_to_sym.txt | 0 .../fixtures/seattlerb/eq_begin_line_numbers.txt | 0 ...eq_begin_why_wont_people_use_their_spacebar.txt | 0 .../fixtures/seattlerb/evstr_evstr.txt | 0 .../fixtures/seattlerb/evstr_str.txt | 0 .../fixtures/seattlerb/expr_not_bang.txt | 0 test/{yarp => prism}/fixtures/seattlerb/f_kw.txt | 0 .../fixtures/seattlerb/f_kw__required.txt | 0 .../fixtures/seattlerb/flip2_env_lvar.txt | 0 .../fixtures/seattlerb/float_with_if_modifier.txt | 0 .../seattlerb/heredoc__backslash_dos_format.txt | 0 .../fixtures/seattlerb/heredoc_backslash_nl.txt | 0 .../fixtures/seattlerb/heredoc_bad_hex_escape.txt | 0 .../fixtures/seattlerb/heredoc_bad_oct_escape.txt | 0 .../fixtures/seattlerb/heredoc_comma_arg.txt | 0 .../fixtures/seattlerb/heredoc_lineno.txt | 0 .../fixtures/seattlerb/heredoc_nested.txt | 0 .../fixtures/seattlerb/heredoc_squiggly.txt | 0 ...edoc_squiggly_blank_line_plus_interpolation.txt | 0 .../seattlerb/heredoc_squiggly_blank_lines.txt | 0 .../fixtures/seattlerb/heredoc_squiggly_empty.txt | 0 .../fixtures/seattlerb/heredoc_squiggly_interp.txt | 0 .../seattlerb/heredoc_squiggly_no_indent.txt | 0 .../fixtures/seattlerb/heredoc_squiggly_tabs.txt | 0 .../seattlerb/heredoc_squiggly_tabs_extra.txt | 0 .../heredoc_squiggly_visually_blank_lines.txt | 0 .../heredoc_trailing_slash_continued_call.txt | 0 .../fixtures/seattlerb/heredoc_unicode.txt | 0 .../heredoc_with_carriage_return_escapes.txt | 0 ...eredoc_with_carriage_return_escapes_windows.txt | 0 .../heredoc_with_extra_carriage_horrible_mix.txt | 0 .../heredoc_with_extra_carriage_returns.txt | 0 ...heredoc_with_extra_carriage_returns_windows.txt | 0 ...h_interpolation_and_carriage_return_escapes.txt | 0 ...olation_and_carriage_return_escapes_windows.txt | 0 .../heredoc_with_not_global_interpolation.txt | 0 .../heredoc_with_only_carriage_returns.txt | 0 .../heredoc_with_only_carriage_returns_windows.txt | 0 .../fixtures/seattlerb/if_elsif.txt | 0 .../fixtures/seattlerb/if_symbol.txt | 0 .../fixtures/seattlerb/in_expr_no_case.txt | 0 .../{yarp => prism}/fixtures/seattlerb/index_0.txt | 0 .../fixtures/seattlerb/index_0_opasgn.txt | 0 .../seattlerb/integer_with_if_modifier.txt | 0 .../interpolated_symbol_array_line_breaks.txt | 0 .../interpolated_word_array_line_breaks.txt | 0 .../fixtures/seattlerb/iter_args_1.txt | 0 .../fixtures/seattlerb/iter_args_10_1.txt | 0 .../fixtures/seattlerb/iter_args_10_2.txt | 0 .../fixtures/seattlerb/iter_args_11_1.txt | 0 .../fixtures/seattlerb/iter_args_11_2.txt | 0 .../fixtures/seattlerb/iter_args_2__19.txt | 0 .../fixtures/seattlerb/iter_args_3.txt | 0 .../fixtures/seattlerb/iter_args_4.txt | 0 .../fixtures/seattlerb/iter_args_5.txt | 0 .../fixtures/seattlerb/iter_args_6.txt | 0 .../fixtures/seattlerb/iter_args_7_1.txt | 0 .../fixtures/seattlerb/iter_args_7_2.txt | 0 .../fixtures/seattlerb/iter_args_8_1.txt | 0 .../fixtures/seattlerb/iter_args_8_2.txt | 0 .../fixtures/seattlerb/iter_args_9_1.txt | 0 .../fixtures/seattlerb/iter_args_9_2.txt | 0 .../fixtures/seattlerb/iter_kwarg.txt | 0 .../fixtures/seattlerb/iter_kwarg_kwsplat.txt | 0 .../fixtures/seattlerb/label_vs_string.txt | 0 .../fixtures/seattlerb/lambda_do_vs_brace.txt | 0 .../fixtures/seattlerb/lasgn_arg_rescue_arg.txt | 0 .../seattlerb/lasgn_call_bracket_rescue_arg.txt | 0 .../seattlerb/lasgn_call_nobracket_rescue_arg.txt | 0 .../fixtures/seattlerb/lasgn_command.txt | 0 .../fixtures/seattlerb/lasgn_env.txt | 0 .../fixtures/seattlerb/lasgn_ivar_env.txt | 0 .../seattlerb/lasgn_lasgn_command_call.txt | 0 .../fixtures/seattlerb/lasgn_middle_splat.txt | 0 .../fixtures/seattlerb/magic_encoding_comment.txt | 0 .../fixtures/seattlerb/masgn_anon_splat_arg.txt | 0 .../fixtures/seattlerb/masgn_arg_colon_arg.txt | 0 .../fixtures/seattlerb/masgn_arg_ident.txt | 0 .../fixtures/seattlerb/masgn_arg_splat_arg.txt | 0 .../fixtures/seattlerb/masgn_colon2.txt | 0 .../fixtures/seattlerb/masgn_colon3.txt | 0 .../fixtures/seattlerb/masgn_command_call.txt | 0 .../fixtures/seattlerb/masgn_double_paren.txt | 0 .../fixtures/seattlerb/masgn_lhs_splat.txt | 0 .../fixtures/seattlerb/masgn_paren.txt | 0 .../fixtures/seattlerb/masgn_splat_arg.txt | 0 .../fixtures/seattlerb/masgn_splat_arg_arg.txt | 0 .../fixtures/seattlerb/masgn_star.txt | 0 .../fixtures/seattlerb/masgn_var_star_var.txt | 0 .../fixtures/seattlerb/messy_op_asgn_lineno.txt | 0 .../seattlerb/method_call_assoc_trailing_comma.txt | 0 .../seattlerb/method_call_trailing_comma.txt | 0 .../fixtures/seattlerb/mlhs_back_anonsplat.txt | 0 .../fixtures/seattlerb/mlhs_back_splat.txt | 0 .../fixtures/seattlerb/mlhs_front_anonsplat.txt | 0 .../fixtures/seattlerb/mlhs_front_splat.txt | 0 .../fixtures/seattlerb/mlhs_keyword.txt | 0 .../fixtures/seattlerb/mlhs_mid_anonsplat.txt | 0 .../fixtures/seattlerb/mlhs_mid_splat.txt | 0 .../fixtures/seattlerb/mlhs_rescue.txt | 0 .../fixtures/seattlerb/module_comments.txt | 0 .../seattlerb/multiline_hash_declaration.txt | 0 .../non_interpolated_symbol_array_line_breaks.txt | 0 .../non_interpolated_word_array_line_breaks.txt | 0 .../fixtures/seattlerb/op_asgn_command_call.txt | 0 .../seattlerb/op_asgn_dot_ident_command_call.txt | 0 .../seattlerb/op_asgn_index_command_call.txt | 0 .../op_asgn_primary_colon_const_command_call.txt | 0 .../op_asgn_primary_colon_identifier1.txt | 0 ..._asgn_primary_colon_identifier_command_call.txt | 0 .../op_asgn_val_dot_ident_command_call.txt | 0 .../fixtures/seattlerb/parse_def_special_name.txt | 0 .../fixtures/seattlerb/parse_if_not_canonical.txt | 0 .../seattlerb/parse_if_not_noncanonical.txt | 0 .../fixtures/seattlerb/parse_line_block.txt | 0 .../seattlerb/parse_line_block_inline_comment.txt | 0 ..._line_block_inline_comment_leading_newlines.txt | 0 .../parse_line_block_inline_multiline_comment.txt | 0 ...rse_line_call_ivar_arg_no_parens_line_break.txt | 0 .../parse_line_call_ivar_line_break_paren.txt | 0 .../fixtures/seattlerb/parse_line_call_no_args.txt | 0 .../fixtures/seattlerb/parse_line_defn_complex.txt | 0 .../seattlerb/parse_line_defn_no_parens.txt | 0 .../seattlerb/parse_line_defn_no_parens_args.txt | 0 .../fixtures/seattlerb/parse_line_dot2.txt | 0 .../fixtures/seattlerb/parse_line_dot2_open.txt | 0 .../fixtures/seattlerb/parse_line_dot3.txt | 0 .../fixtures/seattlerb/parse_line_dot3_open.txt | 0 .../seattlerb/parse_line_dstr_escaped_newline.txt | 0 .../seattlerb/parse_line_dstr_soft_newline.txt | 0 .../seattlerb/parse_line_evstr_after_break.txt | 0 .../fixtures/seattlerb/parse_line_hash_lit.txt | 0 .../fixtures/seattlerb/parse_line_heredoc.txt | 0 .../seattlerb/parse_line_heredoc_evstr.txt | 0 .../seattlerb/parse_line_heredoc_hardnewline.txt | 0 .../seattlerb/parse_line_heredoc_regexp_chars.txt | 0 .../seattlerb/parse_line_iter_call_no_parens.txt | 0 .../seattlerb/parse_line_iter_call_parens.txt | 0 .../seattlerb/parse_line_multiline_str.txt | 0 .../parse_line_multiline_str_literal_n.txt | 0 .../fixtures/seattlerb/parse_line_newlines.txt | 0 .../fixtures/seattlerb/parse_line_op_asgn.txt | 0 .../fixtures/seattlerb/parse_line_postexe.txt | 0 .../fixtures/seattlerb/parse_line_preexe.txt | 0 .../fixtures/seattlerb/parse_line_rescue.txt | 0 .../fixtures/seattlerb/parse_line_return.txt | 0 .../parse_line_str_with_newline_escape.txt | 0 .../fixtures/seattlerb/parse_line_to_ary.txt | 0 .../seattlerb/parse_line_trailing_newlines.txt | 0 .../seattlerb/parse_opt_call_args_assocs_comma.txt | 0 .../seattlerb/parse_opt_call_args_lit_comma.txt | 0 .../fixtures/seattlerb/parse_pattern_019.txt | 0 .../fixtures/seattlerb/parse_pattern_044.txt | 0 .../fixtures/seattlerb/parse_pattern_051.txt | 0 .../fixtures/seattlerb/parse_pattern_058.txt | 0 .../fixtures/seattlerb/parse_pattern_058_2.txt | 0 .../fixtures/seattlerb/parse_pattern_069.txt | 0 .../fixtures/seattlerb/parse_pattern_076.txt | 0 .../seattlerb/parse_until_not_canonical.txt | 0 .../seattlerb/parse_until_not_noncanonical.txt | 0 .../seattlerb/parse_while_not_canonical.txt | 0 .../seattlerb/parse_while_not_noncanonical.txt | 0 .../fixtures/seattlerb/pctW_lineno.txt | 0 .../fixtures/seattlerb/pct_Q_backslash_nl.txt | 0 test/{yarp => prism}/fixtures/seattlerb/pct_nl.txt | 0 .../seattlerb/pct_w_heredoc_interp_nested.txt | 0 .../fixtures/seattlerb/pipe_semicolon.txt | 0 .../fixtures/seattlerb/pipe_space.txt | 0 .../fixtures/seattlerb/qWords_space.txt | 0 .../fixtures/seattlerb/qsymbols.txt | 0 .../fixtures/seattlerb/qsymbols_empty.txt | 0 .../fixtures/seattlerb/qsymbols_empty_space.txt | 0 .../fixtures/seattlerb/qsymbols_interp.txt | 0 .../fixtures/seattlerb/quoted_symbol_hash_arg.txt | 0 .../fixtures/seattlerb/quoted_symbol_keys.txt | 0 .../fixtures/seattlerb/qw_escape.txt | 0 .../fixtures/seattlerb/qw_escape_term.txt | 0 .../fixtures/seattlerb/qwords_empty.txt | 0 .../seattlerb/read_escape_unicode_curlies.txt | 0 .../fixtures/seattlerb/read_escape_unicode_h4.txt | 0 test/{yarp => prism}/fixtures/seattlerb/regexp.txt | 0 .../fixtures/seattlerb/regexp_esc_C_slash.txt | 0 .../fixtures/seattlerb/regexp_esc_u.txt | 0 .../fixtures/seattlerb/regexp_escape_extended.txt | 0 .../fixtures/seattlerb/regexp_unicode_curlies.txt | 0 .../fixtures/seattlerb/required_kwarg_no_value.txt | 0 .../seattlerb/rescue_do_end_ensure_result.txt | 0 .../fixtures/seattlerb/rescue_do_end_no_raise.txt | 0 .../fixtures/seattlerb/rescue_do_end_raised.txt | 0 .../fixtures/seattlerb/rescue_do_end_rescued.txt | 0 .../fixtures/seattlerb/rescue_in_block.txt | 0 .../fixtures/seattlerb/rescue_parens.txt | 0 .../fixtures/seattlerb/return_call_assocs.txt | 0 .../fixtures/seattlerb/rhs_asgn.txt | 0 .../fixtures/seattlerb/ruby21_numbers.txt | 0 .../fixtures/seattlerb/safe_attrasgn.txt | 0 .../fixtures/seattlerb/safe_attrasgn_constant.txt | 0 .../fixtures/seattlerb/safe_call.txt | 0 .../fixtures/seattlerb/safe_call_after_newline.txt | 0 .../fixtures/seattlerb/safe_call_dot_parens.txt | 0 .../fixtures/seattlerb/safe_call_newline.txt | 0 .../fixtures/seattlerb/safe_call_operator.txt | 0 .../fixtures/seattlerb/safe_call_rhs_newline.txt | 0 .../fixtures/seattlerb/safe_calls.txt | 0 .../fixtures/seattlerb/safe_op_asgn.txt | 0 .../fixtures/seattlerb/safe_op_asgn2.txt | 0 .../seattlerb/slashy_newlines_within_string.txt | 0 .../fixtures/seattlerb/stabby_arg_no_paren.txt | 0 .../stabby_arg_opt_splat_arg_block_omfg.txt | 0 .../fixtures/seattlerb/stabby_block_iter_call.txt | 0 .../stabby_block_iter_call_no_target_with_arg.txt | 0 .../fixtures/seattlerb/stabby_block_kw.txt | 0 .../seattlerb/stabby_block_kw__required.txt | 0 .../fixtures/seattlerb/stabby_proc_scope.txt | 0 .../fixtures/seattlerb/str_backslashes.txt | 0 .../str_double_double_escaped_newline.txt | 0 .../seattlerb/str_double_escaped_newline.txt | 0 .../fixtures/seattlerb/str_double_newline.txt | 0 .../fixtures/seattlerb/str_evstr.txt | 0 .../fixtures/seattlerb/str_evstr_escape.txt | 0 .../fixtures/seattlerb/str_heredoc_interp.txt | 0 .../seattlerb/str_interp_ternary_or_label.txt | 0 .../seattlerb/str_lit_concat_bad_encodings.txt | 0 .../seattlerb/str_newline_hash_line_number.txt | 0 .../fixtures/seattlerb/str_pct_Q_nested.txt | 0 .../fixtures/seattlerb/str_pct_nested_nested.txt | 0 .../fixtures/seattlerb/str_pct_q.txt | 0 .../str_single_double_escaped_newline.txt | 0 .../seattlerb/str_single_escaped_newline.txt | 0 .../fixtures/seattlerb/str_single_newline.txt | 0 .../{yarp => prism}/fixtures/seattlerb/str_str.txt | 0 .../fixtures/seattlerb/str_str_str.txt | 0 .../fixtures/seattlerb/super_arg.txt | 0 .../fixtures/seattlerb/symbol_empty.txt | 0 .../fixtures/seattlerb/symbol_list.txt | 0 .../{yarp => prism}/fixtures/seattlerb/symbols.txt | 0 .../fixtures/seattlerb/symbols_empty.txt | 0 .../fixtures/seattlerb/symbols_empty_space.txt | 0 .../fixtures/seattlerb/symbols_interp.txt | 0 test/{yarp => prism}/fixtures/seattlerb/thingy.txt | 0 .../fixtures/seattlerb/uminus_float.txt | 0 .../fixtures/seattlerb/unary_minus.txt | 0 .../fixtures/seattlerb/unary_plus.txt | 0 .../fixtures/seattlerb/unary_plus_on_literal.txt | 0 .../fixtures/seattlerb/unary_tilde.txt | 0 .../fixtures/seattlerb/utf8_bom.txt | 0 .../fixtures/seattlerb/when_splat.txt | 0 .../fixtures/seattlerb/words_interp.txt | 0 .../fixtures/seattlerb/yield_arg.txt | 0 .../fixtures/seattlerb/yield_call_assocs.txt | 0 .../fixtures/seattlerb/yield_empty_parens.txt | 0 .../fixtures/single_quote_heredocs.txt | 0 test/{yarp => prism}/fixtures/spanning_heredoc.txt | 6 +- test/{yarp => prism}/fixtures/strings.txt | 0 test/{yarp => prism}/fixtures/super.txt | 0 test/{yarp => prism}/fixtures/symbols.txt | 0 test/{yarp => prism}/fixtures/ternary_operator.txt | 0 test/{yarp => prism}/fixtures/tilde_heredocs.txt | 0 test/{yarp => prism}/fixtures/undef.txt | 0 test/{yarp => prism}/fixtures/unescaping.txt | 0 test/{yarp => prism}/fixtures/unless.txt | 0 test/{yarp => prism}/fixtures/unparser/LICENSE | 0 .../fixtures/unparser/corpus/literal/alias.txt | 0 .../unparser/corpus/literal/assignment.txt | 0 .../fixtures/unparser/corpus/literal/block.txt | 0 .../fixtures/unparser/corpus/literal/case.txt | 0 .../fixtures/unparser/corpus/literal/class.txt | 0 .../fixtures/unparser/corpus/literal/control.txt | 0 .../fixtures/unparser/corpus/literal/def.txt | 0 .../fixtures/unparser/corpus/literal/defined.txt | 0 .../fixtures/unparser/corpus/literal/defs.txt | 0 .../fixtures/unparser/corpus/literal/dstr.txt | 0 .../fixtures/unparser/corpus/literal/empty.txt | 0 .../unparser/corpus/literal/empty_begin.txt | 0 .../fixtures/unparser/corpus/literal/flipflop.txt | 0 .../fixtures/unparser/corpus/literal/for.txt | 0 .../fixtures/unparser/corpus/literal/hookexe.txt | 0 .../fixtures/unparser/corpus/literal/if.txt | 0 .../fixtures/unparser/corpus/literal/kwbegin.txt | 0 .../fixtures/unparser/corpus/literal/lambda.txt | 0 .../fixtures/unparser/corpus/literal/literal.txt | 0 .../fixtures/unparser/corpus/literal/module.txt | 0 .../fixtures/unparser/corpus/literal/opasgn.txt | 0 .../fixtures/unparser/corpus/literal/pattern.txt | 0 .../fixtures/unparser/corpus/literal/pragma.txt | 0 .../fixtures/unparser/corpus/literal/range.txt | 0 .../fixtures/unparser/corpus/literal/rescue.txt | 0 .../fixtures/unparser/corpus/literal/send.txt | 0 .../fixtures/unparser/corpus/literal/since/27.txt | 0 .../fixtures/unparser/corpus/literal/since/30.txt | 0 .../fixtures/unparser/corpus/literal/since/31.txt | 0 .../fixtures/unparser/corpus/literal/since/32.txt | 0 .../unparser/corpus/literal/singletons.txt | 0 .../fixtures/unparser/corpus/literal/super.txt | 0 .../fixtures/unparser/corpus/literal/unary.txt | 0 .../fixtures/unparser/corpus/literal/undef.txt | 0 .../fixtures/unparser/corpus/literal/variables.txt | 0 .../fixtures/unparser/corpus/literal/while.txt | 0 .../fixtures/unparser/corpus/literal/yield.txt | 0 .../fixtures/unparser/corpus/semantic/and.txt | 0 .../fixtures/unparser/corpus/semantic/block.txt | 0 .../fixtures/unparser/corpus/semantic/def.txt | 0 .../fixtures/unparser/corpus/semantic/dstr.txt | 0 .../fixtures/unparser/corpus/semantic/kwbegin.txt | 0 .../fixtures/unparser/corpus/semantic/literal.txt | 0 .../fixtures/unparser/corpus/semantic/send.txt | 0 .../fixtures/unparser/corpus/semantic/undef.txt | 0 .../fixtures/unparser/corpus/semantic/while.txt | 0 test/{yarp => prism}/fixtures/until.txt | 0 test/{yarp => prism}/fixtures/variables.txt | 0 test/{yarp => prism}/fixtures/while.txt | 0 test/{yarp => prism}/fixtures/whitequark/LICENSE | 0 .../fixtures/whitequark/__ENCODING__.txt | 0 .../fixtures/whitequark/__ENCODING___legacy_.txt | 0 test/{yarp => prism}/fixtures/whitequark/alias.txt | 0 .../fixtures/whitequark/alias_gvar.txt | 0 .../ambiuous_quoted_label_in_ternary_operator.txt | 0 test/{yarp => prism}/fixtures/whitequark/and.txt | 0 .../fixtures/whitequark/and_asgn.txt | 0 .../fixtures/whitequark/and_or_masgn.txt | 0 .../fixtures/whitequark/anonymous_blockarg.txt | 0 test/{yarp => prism}/fixtures/whitequark/arg.txt | 0 .../fixtures/whitequark/arg_duplicate_ignored.txt | 0 .../fixtures/whitequark/arg_label.txt | 0 .../fixtures/whitequark/arg_scope.txt | 0 test/{yarp => prism}/fixtures/whitequark/args.txt | 0 .../fixtures/whitequark/args_args_assocs.txt | 0 .../fixtures/whitequark/args_args_assocs_comma.txt | 0 .../fixtures/whitequark/args_args_comma.txt | 0 .../fixtures/whitequark/args_args_star.txt | 0 .../fixtures/whitequark/args_assocs.txt | 0 .../fixtures/whitequark/args_assocs_comma.txt | 0 .../fixtures/whitequark/args_assocs_legacy.txt | 0 .../fixtures/whitequark/args_block_pass.txt | 0 .../fixtures/whitequark/args_cmd.txt | 0 .../fixtures/whitequark/args_star.txt | 0 .../fixtures/whitequark/array_assocs.txt | 0 .../fixtures/whitequark/array_plain.txt | 0 .../fixtures/whitequark/array_splat.txt | 0 .../fixtures/whitequark/array_symbols.txt | 0 .../fixtures/whitequark/array_symbols_empty.txt | 0 .../fixtures/whitequark/array_symbols_interp.txt | 0 .../fixtures/whitequark/array_words.txt | 0 .../fixtures/whitequark/array_words_empty.txt | 0 .../fixtures/whitequark/array_words_interp.txt | 0 .../fixtures/whitequark/asgn_cmd.txt | 0 .../fixtures/whitequark/asgn_mrhs.txt | 0 .../fixtures/whitequark/back_ref.txt | 0 test/{yarp => prism}/fixtures/whitequark/bang.txt | 0 .../fixtures/whitequark/bang_cmd.txt | 0 .../fixtures/whitequark/begin_cmdarg.txt | 0 .../whitequark/beginless_erange_after_newline.txt | 0 .../whitequark/beginless_irange_after_newline.txt | 0 .../fixtures/whitequark/beginless_range.txt | 0 .../fixtures/whitequark/blockarg.txt | 0 .../fixtures/whitequark/blockargs.txt | 0 test/{yarp => prism}/fixtures/whitequark/break.txt | 0 .../fixtures/whitequark/break_block.txt | 0 .../fixtures/whitequark/bug_435.txt | 0 .../fixtures/whitequark/bug_447.txt | 0 .../fixtures/whitequark/bug_452.txt | 0 .../fixtures/whitequark/bug_466.txt | 0 .../fixtures/whitequark/bug_473.txt | 0 .../fixtures/whitequark/bug_480.txt | 0 .../fixtures/whitequark/bug_481.txt | 0 .../whitequark/bug_ascii_8bit_in_literal.txt | 0 .../whitequark/bug_cmd_string_lookahead.txt | 0 .../fixtures/whitequark/bug_cmdarg.txt | 0 .../whitequark/bug_def_no_paren_eql_begin.txt | 0 .../whitequark/bug_do_block_in_call_args.txt | 0 .../fixtures/whitequark/bug_do_block_in_cmdarg.txt | 0 .../whitequark/bug_do_block_in_hash_brace.txt | 0 .../fixtures/whitequark/bug_heredoc_do.txt | 0 .../fixtures/whitequark/bug_interp_single.txt | 0 .../fixtures/whitequark/bug_lambda_leakage.txt | 0 .../fixtures/whitequark/bug_regex_verification.txt | 0 .../fixtures/whitequark/bug_rescue_empty_else.txt | 0 .../whitequark/bug_while_not_parens_do.txt | 0 .../fixtures/whitequark/case_cond.txt | 0 .../fixtures/whitequark/case_cond_else.txt | 0 .../fixtures/whitequark/case_expr.txt | 0 .../fixtures/whitequark/case_expr_else.txt | 0 .../fixtures/whitequark/casgn_scoped.txt | 0 .../fixtures/whitequark/casgn_toplevel.txt | 0 .../fixtures/whitequark/casgn_unscoped.txt | 0 .../fixtures/whitequark/character.txt | 0 test/{yarp => prism}/fixtures/whitequark/class.txt | 0 .../whitequark/class_definition_in_while_cond.txt | 0 .../fixtures/whitequark/class_super.txt | 0 .../fixtures/whitequark/class_super_label.txt | 0 .../whitequark/comments_before_leading_dot__27.txt | 0 .../fixtures/whitequark/complex.txt | 0 .../fixtures/whitequark/cond_begin.txt | 0 .../fixtures/whitequark/cond_begin_masgn.txt | 0 .../fixtures/whitequark/cond_eflipflop.txt | 0 .../fixtures/whitequark/cond_iflipflop.txt | 0 .../whitequark/cond_match_current_line.txt | 0 .../fixtures/whitequark/const_op_asgn.txt | 0 .../fixtures/whitequark/const_scoped.txt | 0 .../fixtures/whitequark/const_toplevel.txt | 0 .../fixtures/whitequark/const_unscoped.txt | 0 test/{yarp => prism}/fixtures/whitequark/cpath.txt | 0 test/{yarp => prism}/fixtures/whitequark/cvar.txt | 0 .../{yarp => prism}/fixtures/whitequark/cvasgn.txt | 0 .../fixtures/whitequark/dedenting_heredoc.txt | 0 ...nterpolating_heredoc_fake_line_continuation.txt | 0 ...non_interpolating_heredoc_line_continuation.txt | 0 test/{yarp => prism}/fixtures/whitequark/def.txt | 0 .../fixtures/whitequark/defined.txt | 0 test/{yarp => prism}/fixtures/whitequark/defs.txt | 0 .../fixtures/whitequark/empty_stmt.txt | 0 .../whitequark/endless_comparison_method.txt | 0 .../fixtures/whitequark/endless_method.txt | 0 .../whitequark/endless_method_command_syntax.txt | 0 .../endless_method_forwarded_args_legacy.txt | 0 .../whitequark/endless_method_with_rescue_mod.txt | 0 .../whitequark/endless_method_without_args.txt | 0 .../{yarp => prism}/fixtures/whitequark/ensure.txt | 0 .../fixtures/whitequark/ensure_empty.txt | 0 test/{yarp => prism}/fixtures/whitequark/false.txt | 0 test/{yarp => prism}/fixtures/whitequark/float.txt | 0 test/{yarp => prism}/fixtures/whitequark/for.txt | 0 .../fixtures/whitequark/for_mlhs.txt | 0 .../fixtures/whitequark/forward_arg.txt | 0 .../whitequark/forward_arg_with_open_args.txt | 0 .../fixtures/whitequark/forward_args_legacy.txt | 0 .../forwarded_argument_with_kwrestarg.txt | 0 .../whitequark/forwarded_argument_with_restarg.txt | 0 .../fixtures/whitequark/forwarded_kwrestarg.txt | 0 .../forwarded_kwrestarg_with_additional_kwarg.txt | 0 .../fixtures/whitequark/forwarded_restarg.txt | 0 test/{yarp => prism}/fixtures/whitequark/gvar.txt | 0 .../{yarp => prism}/fixtures/whitequark/gvasgn.txt | 0 .../fixtures/whitequark/hash_empty.txt | 0 .../fixtures/whitequark/hash_hashrocket.txt | 0 .../fixtures/whitequark/hash_kwsplat.txt | 0 .../fixtures/whitequark/hash_label.txt | 0 .../fixtures/whitequark/hash_label_end.txt | 0 .../whitequark/hash_pair_value_omission.txt | 0 .../fixtures/whitequark/heredoc.txt | 0 test/{yarp => prism}/fixtures/whitequark/if.txt | 0 .../fixtures/whitequark/if_else.txt | 0 .../fixtures/whitequark/if_elsif.txt | 0 .../fixtures/whitequark/if_masgn__24.txt | 0 .../{yarp => prism}/fixtures/whitequark/if_mod.txt | 0 .../fixtures/whitequark/if_nl_then.txt | 0 .../whitequark/if_while_after_class__since_32.txt | 0 test/{yarp => prism}/fixtures/whitequark/int.txt | 0 .../fixtures/whitequark/int___LINE__.txt | 0 .../fixtures/whitequark/interp_digit_var.txt | 0 test/{yarp => prism}/fixtures/whitequark/ivar.txt | 0 .../{yarp => prism}/fixtures/whitequark/ivasgn.txt | 0 .../whitequark/keyword_argument_omission.txt | 0 test/{yarp => prism}/fixtures/whitequark/kwarg.txt | 0 .../fixtures/whitequark/kwbegin_compstmt.txt | 0 .../fixtures/whitequark/kwnilarg.txt | 0 .../fixtures/whitequark/kwoptarg.txt | 0 .../kwoptarg_with_kwrestarg_and_forwarded_args.txt | 0 .../fixtures/whitequark/kwrestarg_named.txt | 0 .../fixtures/whitequark/kwrestarg_unnamed.txt | 0 .../whitequark/lbrace_arg_after_command_args.txt | 0 .../whitequark/lparenarg_after_lvar__since_25.txt | 0 test/{yarp => prism}/fixtures/whitequark/lvar.txt | 0 .../fixtures/whitequark/lvar_injecting_match.txt | 0 .../{yarp => prism}/fixtures/whitequark/lvasgn.txt | 0 test/{yarp => prism}/fixtures/whitequark/masgn.txt | 0 .../fixtures/whitequark/masgn_attr.txt | 0 .../fixtures/whitequark/masgn_cmd.txt | 0 .../fixtures/whitequark/masgn_const.txt | 0 .../fixtures/whitequark/masgn_nested.txt | 0 .../fixtures/whitequark/masgn_splat.txt | 0 .../whitequark/method_definition_in_while_cond.txt | 0 .../{yarp => prism}/fixtures/whitequark/module.txt | 0 .../whitequark/multiple_pattern_matches.txt | 0 .../whitequark/newline_in_hash_argument.txt | 0 test/{yarp => prism}/fixtures/whitequark/next.txt | 0 .../fixtures/whitequark/next_block.txt | 0 test/{yarp => prism}/fixtures/whitequark/nil.txt | 0 .../fixtures/whitequark/nil_expression.txt | 0 .../whitequark/non_lvar_injecting_match.txt | 0 test/{yarp => prism}/fixtures/whitequark/not.txt | 0 .../fixtures/whitequark/not_cmd.txt | 0 .../fixtures/whitequark/not_masgn__24.txt | 0 .../fixtures/whitequark/nth_ref.txt | 0 .../fixtures/whitequark/numbered_args_after_27.txt | 0 .../fixtures/whitequark/numparam_outside_block.txt | 0 .../fixtures/whitequark/op_asgn.txt | 0 .../fixtures/whitequark/op_asgn_cmd.txt | 0 .../fixtures/whitequark/op_asgn_index.txt | 0 .../fixtures/whitequark/op_asgn_index_cmd.txt | 0 .../{yarp => prism}/fixtures/whitequark/optarg.txt | 0 test/{yarp => prism}/fixtures/whitequark/or.txt | 0 .../fixtures/whitequark/or_asgn.txt | 0 .../fixtures/whitequark/parser_bug_272.txt | 0 .../fixtures/whitequark/parser_bug_490.txt | 0 .../fixtures/whitequark/parser_bug_507.txt | 0 .../fixtures/whitequark/parser_bug_518.txt | 0 .../fixtures/whitequark/parser_bug_525.txt | 0 .../fixtures/whitequark/parser_bug_604.txt | 0 .../fixtures/whitequark/parser_bug_640.txt | 0 .../fixtures/whitequark/parser_bug_645.txt | 0 .../fixtures/whitequark/parser_bug_830.txt | 0 ...r_drops_truncated_parts_of_squiggly_heredoc.txt | 0 .../parser_slash_slash_n_escaping_in_literals.txt | 0 .../pattern_matching__FILE__LINE_literals.txt | 0 .../whitequark/pattern_matching_blank_else.txt | 0 .../fixtures/whitequark/pattern_matching_else.txt | 0 .../whitequark/pattern_matching_single_line.txt | 0 ...single_line_allowed_omission_of_parentheses.txt | 0 .../fixtures/whitequark/postexe.txt | 0 .../{yarp => prism}/fixtures/whitequark/preexe.txt | 0 .../fixtures/whitequark/procarg0.txt | 0 .../fixtures/whitequark/range_exclusive.txt | 0 .../fixtures/whitequark/range_inclusive.txt | 0 .../fixtures/whitequark/rational.txt | 0 test/{yarp => prism}/fixtures/whitequark/redo.txt | 0 .../fixtures/whitequark/regex_interp.txt | 0 .../fixtures/whitequark/regex_plain.txt | 0 .../fixtures/whitequark/resbody_list.txt | 0 .../fixtures/whitequark/resbody_list_mrhs.txt | 0 .../fixtures/whitequark/resbody_list_var.txt | 0 .../fixtures/whitequark/resbody_var.txt | 0 .../{yarp => prism}/fixtures/whitequark/rescue.txt | 0 .../fixtures/whitequark/rescue_else.txt | 0 .../fixtures/whitequark/rescue_else_ensure.txt | 0 .../fixtures/whitequark/rescue_ensure.txt | 0 .../fixtures/whitequark/rescue_in_lambda_block.txt | 0 .../fixtures/whitequark/rescue_mod.txt | 0 .../fixtures/whitequark/rescue_mod_asgn.txt | 0 .../fixtures/whitequark/rescue_mod_masgn.txt | 0 .../fixtures/whitequark/rescue_mod_op_assign.txt | 0 .../whitequark/rescue_without_begin_end.txt | 0 .../fixtures/whitequark/restarg_named.txt | 0 .../fixtures/whitequark/restarg_unnamed.txt | 0 test/{yarp => prism}/fixtures/whitequark/retry.txt | 0 .../{yarp => prism}/fixtures/whitequark/return.txt | 0 .../fixtures/whitequark/return_block.txt | 0 .../fixtures/whitequark/ruby_bug_10279.txt | 0 .../fixtures/whitequark/ruby_bug_10653.txt | 0 .../fixtures/whitequark/ruby_bug_11107.txt | 0 .../fixtures/whitequark/ruby_bug_11380.txt | 0 .../fixtures/whitequark/ruby_bug_11873.txt | 0 .../fixtures/whitequark/ruby_bug_11873_a.txt | 0 .../fixtures/whitequark/ruby_bug_11873_b.txt | 0 .../fixtures/whitequark/ruby_bug_11989.txt | 0 .../fixtures/whitequark/ruby_bug_11990.txt | 0 .../fixtures/whitequark/ruby_bug_12073.txt | 0 .../fixtures/whitequark/ruby_bug_12402.txt | 0 .../fixtures/whitequark/ruby_bug_12669.txt | 0 .../fixtures/whitequark/ruby_bug_12686.txt | 0 .../fixtures/whitequark/ruby_bug_13547.txt | 0 .../fixtures/whitequark/ruby_bug_14690.txt | 0 .../fixtures/whitequark/ruby_bug_15789.txt | 0 .../fixtures/whitequark/ruby_bug_9669.txt | 0 .../{yarp => prism}/fixtures/whitequark/sclass.txt | 0 test/{yarp => prism}/fixtures/whitequark/self.txt | 0 .../fixtures/whitequark/send_attr_asgn.txt | 0 .../whitequark/send_attr_asgn_conditional.txt | 0 .../fixtures/whitequark/send_binary_op.txt | 0 .../fixtures/whitequark/send_block_chain_cmd.txt | 0 .../fixtures/whitequark/send_block_conditional.txt | 0 .../fixtures/whitequark/send_call.txt | 0 .../fixtures/whitequark/send_conditional.txt | 0 .../fixtures/whitequark/send_index.txt | 0 .../fixtures/whitequark/send_index_asgn.txt | 0 .../fixtures/whitequark/send_index_asgn_legacy.txt | 0 .../fixtures/whitequark/send_index_cmd.txt | 0 .../fixtures/whitequark/send_index_legacy.txt | 0 .../fixtures/whitequark/send_lambda.txt | 0 .../fixtures/whitequark/send_lambda_args.txt | 0 .../whitequark/send_lambda_args_noparen.txt | 0 .../whitequark/send_lambda_args_shadow.txt | 0 .../fixtures/whitequark/send_lambda_legacy.txt | 0 .../whitequark/send_op_asgn_conditional.txt | 0 .../fixtures/whitequark/send_plain.txt | 0 .../fixtures/whitequark/send_plain_cmd.txt | 0 .../fixtures/whitequark/send_self.txt | 0 .../fixtures/whitequark/send_self_block.txt | 0 .../fixtures/whitequark/send_unary_op.txt | 0 .../whitequark/slash_newline_in_heredocs.txt | 0 .../fixtures/whitequark/space_args_arg.txt | 0 .../fixtures/whitequark/space_args_arg_block.txt | 0 .../fixtures/whitequark/space_args_arg_call.txt | 0 .../fixtures/whitequark/space_args_arg_newline.txt | 0 .../fixtures/whitequark/space_args_block.txt | 0 .../fixtures/whitequark/space_args_cmd.txt | 0 .../fixtures/whitequark/string___FILE__.txt | 0 .../fixtures/whitequark/string_concat.txt | 0 .../fixtures/whitequark/string_dvar.txt | 0 .../fixtures/whitequark/string_interp.txt | 0 .../fixtures/whitequark/string_plain.txt | 0 test/{yarp => prism}/fixtures/whitequark/super.txt | 0 .../fixtures/whitequark/super_block.txt | 0 .../fixtures/whitequark/symbol_interp.txt | 0 .../fixtures/whitequark/symbol_plain.txt | 0 .../fixtures/whitequark/ternary.txt | 0 .../whitequark/ternary_ambiguous_symbol.txt | 0 .../fixtures/whitequark/trailing_forward_arg.txt | 0 test/{yarp => prism}/fixtures/whitequark/true.txt | 0 .../whitequark/unary_num_pow_precedence.txt | 0 test/{yarp => prism}/fixtures/whitequark/undef.txt | 0 .../{yarp => prism}/fixtures/whitequark/unless.txt | 0 .../fixtures/whitequark/unless_else.txt | 0 .../fixtures/whitequark/unless_mod.txt | 0 test/{yarp => prism}/fixtures/whitequark/until.txt | 0 .../fixtures/whitequark/until_mod.txt | 0 .../fixtures/whitequark/until_post.txt | 0 .../fixtures/whitequark/var_and_asgn.txt | 0 .../fixtures/whitequark/var_op_asgn.txt | 0 .../fixtures/whitequark/var_op_asgn_cmd.txt | 0 .../fixtures/whitequark/var_or_asgn.txt | 0 .../fixtures/whitequark/when_multi.txt | 0 .../fixtures/whitequark/when_splat.txt | 0 .../fixtures/whitequark/when_then.txt | 0 test/{yarp => prism}/fixtures/whitequark/while.txt | 0 .../fixtures/whitequark/while_mod.txt | 0 .../fixtures/whitequark/while_post.txt | 0 .../fixtures/whitequark/xstring_interp.txt | 0 .../fixtures/whitequark/xstring_plain.txt | 0 test/{yarp => prism}/fixtures/whitequark/yield.txt | 0 .../{yarp => prism}/fixtures/whitequark/zsuper.txt | 0 test/{yarp => prism}/fixtures/xstring.txt | 0 test/{yarp => prism}/fixtures/yield.txt | 0 test/{yarp => prism}/fuzzer_test.rb | 4 +- test/{yarp => prism}/heredoc_dedent_test.rb | 4 +- test/{yarp/compiler_test.rb => prism/iseq_test.rb} | 202 +- test/{yarp => prism}/library_symbols_test.rb | 28 +- test/{yarp => prism}/locals_test.rb | 4 +- test/{yarp => prism}/location_test.rb | 6 +- test/{yarp => prism}/memsize_test.rb | 4 +- test/{yarp => prism}/newline_test.rb | 8 +- test/{yarp => prism}/parse_serialize_test.rb | 8 +- test/{yarp => prism}/parse_test.rb | 41 +- test/{yarp => prism}/pattern_test.rb | 8 +- test/{yarp => prism}/regexp_test.rb | 6 +- test/{yarp => prism}/ripper_compat_test.rb | 2 +- test/{yarp => prism}/ruby_api_test.rb | 16 +- test/{yarp => prism}/snapshots/alias.txt | 0 test/{yarp => prism}/snapshots/arithmetic.txt | 0 test/{yarp => prism}/snapshots/arrays.txt | 0 test/{yarp => prism}/snapshots/begin_ensure.txt | 0 test/{yarp => prism}/snapshots/begin_rescue.txt | 0 test/{yarp => prism}/snapshots/blocks.txt | 0 .../snapshots/boolean_operators.txt | 0 test/{yarp => prism}/snapshots/booleans.txt | 0 test/{yarp => prism}/snapshots/break.txt | 0 test/{yarp => prism}/snapshots/case.txt | 0 test/{yarp => prism}/snapshots/classes.txt | 0 test/{yarp => prism}/snapshots/comments.txt | 0 test/{yarp => prism}/snapshots/constants.txt | 0 test/{yarp => prism}/snapshots/dash_heredocs.txt | 0 test/{yarp => prism}/snapshots/defined.txt | 0 test/{yarp => prism}/snapshots/dos_endings.txt | 0 .../snapshots/embdoc_no_newline_at_end.txt | 0 test/{yarp => prism}/snapshots/endless_methods.txt | 0 .../snapshots/endless_range_in_conditional.txt | 0 test/{yarp => prism}/snapshots/for.txt | 0 .../{yarp => prism}/snapshots/global_variables.txt | 0 test/{yarp => prism}/snapshots/hashes.txt | 0 .../heredoc_with_escaped_newline_at_start.txt | 0 .../snapshots/heredoc_with_trailing_newline.txt | 0 test/{yarp => prism}/snapshots/heredocs_nested.txt | 0 .../snapshots/heredocs_with_ignored_newlines.txt | 0 ...eredocs_with_ignored_newlines_and_non_empty.txt | 0 test/{yarp => prism}/snapshots/if.txt | 0 .../snapshots/indented_file_end.txt | 0 .../snapshots/integer_operations.txt | 0 .../snapshots/keyword_method_names.txt | 0 test/{yarp => prism}/snapshots/keywords.txt | 0 test/{yarp => prism}/snapshots/lambda.txt | 0 test/{yarp => prism}/snapshots/method_calls.txt | 0 test/{yarp => prism}/snapshots/methods.txt | 0 test/{yarp => prism}/snapshots/modules.txt | 0 .../snapshots/newline_terminated.txt | 0 test/{yarp => prism}/snapshots/next.txt | 0 test/{yarp => prism}/snapshots/nils.txt | 0 .../snapshots/non_alphanumeric_methods.txt | 0 test/{yarp => prism}/snapshots/not.txt | 0 test/{yarp => prism}/snapshots/numbers.txt | 0 test/{yarp => prism}/snapshots/patterns.txt | 0 test/{yarp => prism}/snapshots/procs.txt | 0 .../snapshots/range_begin_open_exclusive.txt | 0 .../snapshots/range_begin_open_inclusive.txt | 0 .../snapshots/range_end_open_exclusive.txt | 0 .../snapshots/range_end_open_inclusive.txt | 0 test/{yarp => prism}/snapshots/ranges.txt | 0 test/{yarp => prism}/snapshots/regex.txt | 0 test/{yarp => prism}/snapshots/rescue.txt | 0 test/{yarp => prism}/snapshots/return.txt | 0 test/{yarp => prism}/snapshots/seattlerb/BEGIN.txt | 0 .../snapshots/seattlerb/TestRubyParserShared.txt | 0 .../snapshots/seattlerb/__ENCODING__.txt | 0 .../snapshots/seattlerb/alias_gvar_backref.txt | 0 .../snapshots/seattlerb/alias_resword.txt | 0 .../snapshots/seattlerb/and_multi.txt | 0 .../snapshots/seattlerb/aref_args_assocs.txt | 0 .../snapshots/seattlerb/aref_args_lit_assocs.txt | 0 .../snapshots/seattlerb/args_kw_block.txt | 0 .../snapshots/seattlerb/array_line_breaks.txt | 0 .../seattlerb/array_lits_trailing_calls.txt | 0 .../snapshots/seattlerb/assoc__bare.txt | 0 .../snapshots/seattlerb/assoc_label.txt | 0 .../snapshots/seattlerb/attr_asgn_colon_id.txt | 0 .../snapshots/seattlerb/attrasgn_array_arg.txt | 0 .../snapshots/seattlerb/attrasgn_array_lhs.txt | 0 .../seattlerb/attrasgn_primary_dot_constant.txt | 0 .../seattlerb/backticks_interpolation_line.txt | 0 .../snapshots/seattlerb/bang_eq.txt | 0 test/{yarp => prism}/snapshots/seattlerb/bdot2.txt | 0 test/{yarp => prism}/snapshots/seattlerb/bdot3.txt | 0 .../snapshots/seattlerb/begin_ensure_no_bodies.txt | 0 .../seattlerb/begin_rescue_else_ensure_bodies.txt | 0 .../begin_rescue_else_ensure_no_bodies.txt | 0 .../seattlerb/begin_rescue_ensure_no_bodies.txt | 0 .../snapshots/seattlerb/block_arg__bare.txt | 0 .../snapshots/seattlerb/block_arg_kwsplat.txt | 0 .../seattlerb/block_arg_opt_arg_block.txt | 0 .../snapshots/seattlerb/block_arg_opt_splat.txt | 0 .../block_arg_opt_splat_arg_block_omfg.txt | 0 .../snapshots/seattlerb/block_arg_optional.txt | 0 .../snapshots/seattlerb/block_arg_scope.txt | 0 .../snapshots/seattlerb/block_arg_scope2.txt | 0 .../snapshots/seattlerb/block_arg_splat_arg.txt | 0 .../snapshots/seattlerb/block_args_kwargs.txt | 0 .../snapshots/seattlerb/block_args_no_kwargs.txt | 0 .../snapshots/seattlerb/block_args_opt1.txt | 0 .../snapshots/seattlerb/block_args_opt2.txt | 0 .../snapshots/seattlerb/block_args_opt2_2.txt | 0 .../snapshots/seattlerb/block_args_opt3.txt | 0 .../snapshots/seattlerb/block_break.txt | 0 .../seattlerb/block_call_defn_call_block_call.txt | 0 .../seattlerb/block_call_dot_op2_brace_block.txt | 0 .../block_call_dot_op2_cmd_args_do_block.txt | 0 .../seattlerb/block_call_operation_colon.txt | 0 .../seattlerb/block_call_operation_dot.txt | 0 .../seattlerb/block_call_paren_call_block_call.txt | 0 .../seattlerb/block_command_operation_colon.txt | 0 .../seattlerb/block_command_operation_dot.txt | 0 .../seattlerb/block_decomp_anon_splat_arg.txt | 0 .../snapshots/seattlerb/block_decomp_arg_splat.txt | 0 .../seattlerb/block_decomp_arg_splat_arg.txt | 0 .../snapshots/seattlerb/block_decomp_splat.txt | 0 .../snapshots/seattlerb/block_kw.txt | 0 .../snapshots/seattlerb/block_kw__required.txt | 0 .../snapshots/seattlerb/block_kwarg_lvar.txt | 0 .../seattlerb/block_kwarg_lvar_multiple.txt | 0 .../snapshots/seattlerb/block_next.txt | 0 .../snapshots/seattlerb/block_opt_arg.txt | 0 .../snapshots/seattlerb/block_opt_splat.txt | 0 .../seattlerb/block_opt_splat_arg_block_omfg.txt | 0 .../snapshots/seattlerb/block_optarg.txt | 0 .../snapshots/seattlerb/block_paren_splat.txt | 0 .../snapshots/seattlerb/block_reg_optarg.txt | 0 .../snapshots/seattlerb/block_return.txt | 0 .../snapshots/seattlerb/block_scope.txt | 0 .../snapshots/seattlerb/block_splat_reg.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug169.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug179.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug190.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug191.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug202.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug236.txt | 0 .../{yarp => prism}/snapshots/seattlerb/bug290.txt | 0 .../snapshots/seattlerb/bug_187.txt | 0 .../snapshots/seattlerb/bug_215.txt | 0 .../snapshots/seattlerb/bug_249.txt | 0 .../snapshots/seattlerb/bug_and.txt | 0 .../snapshots/seattlerb/bug_args__19.txt | 0 .../snapshots/seattlerb/bug_args_masgn.txt | 0 .../snapshots/seattlerb/bug_args_masgn2.txt | 0 .../seattlerb/bug_args_masgn_outer_parens__19.txt | 0 .../seattlerb/bug_call_arglist_parens.txt | 0 .../snapshots/seattlerb/bug_case_when_regexp.txt | 0 .../snapshots/seattlerb/bug_comma.txt | 0 .../snapshots/seattlerb/bug_cond_pct.txt | 0 .../snapshots/seattlerb/bug_hash_args.txt | 0 .../seattlerb/bug_hash_args_trailing_comma.txt | 0 .../snapshots/seattlerb/bug_hash_interp_array.txt | 0 .../snapshots/seattlerb/bug_masgn_right.txt | 0 .../snapshots/seattlerb/bug_not_parens.txt | 0 .../snapshots/seattlerb/bug_op_asgn_rescue.txt | 0 .../snapshots/seattlerb/call_and.txt | 0 .../snapshots/seattlerb/call_arg_assoc.txt | 0 .../snapshots/seattlerb/call_arg_assoc_kwsplat.txt | 0 .../snapshots/seattlerb/call_arg_kwsplat.txt | 0 .../snapshots/seattlerb/call_args_assoc_quoted.txt | 0 .../seattlerb/call_args_assoc_trailing_comma.txt | 0 .../snapshots/seattlerb/call_args_command.txt | 0 .../snapshots/seattlerb/call_array_arg.txt | 0 .../snapshots/seattlerb/call_array_block_call.txt | 0 .../seattlerb/call_array_lambda_block_call.txt | 0 .../seattlerb/call_array_lit_inline_hash.txt | 0 .../snapshots/seattlerb/call_assoc.txt | 0 .../snapshots/seattlerb/call_assoc_new.txt | 0 .../seattlerb/call_assoc_new_if_multiline.txt | 0 .../seattlerb/call_assoc_trailing_comma.txt | 0 .../snapshots/seattlerb/call_bang_command_call.txt | 0 .../snapshots/seattlerb/call_bang_squiggle.txt | 0 .../seattlerb/call_begin_call_block_call.txt | 0 .../snapshots/seattlerb/call_block_arg_named.txt | 0 .../snapshots/seattlerb/call_carat.txt | 0 .../snapshots/seattlerb/call_colon2.txt | 0 .../snapshots/seattlerb/call_colon_parens.txt | 0 .../snapshots/seattlerb/call_div.txt | 0 .../snapshots/seattlerb/call_dot_parens.txt | 0 .../snapshots/seattlerb/call_env.txt | 0 .../snapshots/seattlerb/call_eq3.txt | 0 .../snapshots/seattlerb/call_gt.txt | 0 .../snapshots/seattlerb/call_kwsplat.txt | 0 .../snapshots/seattlerb/call_leading_dots.txt | 0 .../seattlerb/call_leading_dots_comment.txt | 0 .../snapshots/seattlerb/call_lt.txt | 0 .../snapshots/seattlerb/call_lte.txt | 0 .../snapshots/seattlerb/call_not.txt | 0 .../snapshots/seattlerb/call_pipe.txt | 0 .../snapshots/seattlerb/call_rshift.txt | 0 .../snapshots/seattlerb/call_self_brackets.txt | 0 .../snapshots/seattlerb/call_spaceship.txt | 0 .../seattlerb/call_stabby_do_end_with_block.txt | 0 .../seattlerb/call_stabby_with_braces_block.txt | 0 .../snapshots/seattlerb/call_star.txt | 0 .../snapshots/seattlerb/call_star2.txt | 0 .../snapshots/seattlerb/call_trailing_comma.txt | 0 .../snapshots/seattlerb/call_trailing_dots.txt | 0 .../snapshots/seattlerb/call_unary_bang.txt | 0 .../snapshots/seattlerb/case_in.txt | 0 .../snapshots/seattlerb/case_in_31.txt | 0 .../snapshots/seattlerb/case_in_37.txt | 0 .../snapshots/seattlerb/case_in_42.txt | 0 .../snapshots/seattlerb/case_in_42_2.txt | 0 .../snapshots/seattlerb/case_in_47.txt | 0 .../snapshots/seattlerb/case_in_67.txt | 0 .../snapshots/seattlerb/case_in_86.txt | 0 .../snapshots/seattlerb/case_in_86_2.txt | 0 .../seattlerb/case_in_array_pat_const.txt | 0 .../seattlerb/case_in_array_pat_const2.txt | 0 .../seattlerb/case_in_array_pat_paren_assign.txt | 0 .../snapshots/seattlerb/case_in_const.txt | 0 .../snapshots/seattlerb/case_in_else.txt | 0 .../snapshots/seattlerb/case_in_find.txt | 0 .../snapshots/seattlerb/case_in_find_array.txt | 0 .../snapshots/seattlerb/case_in_hash_pat.txt | 0 .../seattlerb/case_in_hash_pat_assign.txt | 0 .../seattlerb/case_in_hash_pat_paren_assign.txt | 0 .../seattlerb/case_in_hash_pat_paren_true.txt | 0 .../snapshots/seattlerb/case_in_hash_pat_rest.txt | 0 .../seattlerb/case_in_hash_pat_rest_solo.txt | 0 .../seattlerb/case_in_if_unless_post_mod.txt | 0 .../snapshots/seattlerb/case_in_multiple.txt | 0 .../snapshots/seattlerb/case_in_or.txt | 0 .../snapshots/seattlerb/class_comments.txt | 0 .../snapshots/seattlerb/cond_unary_minus.txt | 0 .../snapshots/seattlerb/const_2_op_asgn_or2.txt | 0 .../snapshots/seattlerb/const_3_op_asgn_or.txt | 0 .../snapshots/seattlerb/const_op_asgn_and1.txt | 0 .../snapshots/seattlerb/const_op_asgn_and2.txt | 0 .../snapshots/seattlerb/const_op_asgn_or.txt | 0 .../snapshots/seattlerb/dasgn_icky2.txt | 0 .../snapshots/seattlerb/defined_eh_parens.txt | 0 .../snapshots/seattlerb/defn_arg_asplat_arg.txt | 0 .../snapshots/seattlerb/defn_arg_forward_args.txt | 0 .../snapshots/seattlerb/defn_args_forward_args.txt | 0 .../snapshots/seattlerb/defn_comments.txt | 0 .../snapshots/seattlerb/defn_endless_command.txt | 0 .../seattlerb/defn_endless_command_rescue.txt | 0 .../snapshots/seattlerb/defn_forward_args.txt | 0 .../seattlerb/defn_forward_args__no_parens.txt | 0 .../snapshots/seattlerb/defn_kwarg_env.txt | 0 .../snapshots/seattlerb/defn_kwarg_kwarg.txt | 0 .../snapshots/seattlerb/defn_kwarg_kwsplat.txt | 0 .../seattlerb/defn_kwarg_kwsplat_anon.txt | 0 .../snapshots/seattlerb/defn_kwarg_lvar.txt | 0 .../snapshots/seattlerb/defn_kwarg_no_parens.txt | 0 .../snapshots/seattlerb/defn_kwarg_val.txt | 0 .../snapshots/seattlerb/defn_no_kwargs.txt | 0 .../snapshots/seattlerb/defn_oneliner.txt | 0 .../snapshots/seattlerb/defn_oneliner_eq2.txt | 0 .../snapshots/seattlerb/defn_oneliner_noargs.txt | 0 .../seattlerb/defn_oneliner_noargs_parentheses.txt | 0 .../snapshots/seattlerb/defn_oneliner_rescue.txt | 0 .../snapshots/seattlerb/defn_opt_last_arg.txt | 0 .../snapshots/seattlerb/defn_opt_reg.txt | 0 .../snapshots/seattlerb/defn_opt_splat_arg.txt | 0 .../snapshots/seattlerb/defn_powarg.txt | 0 .../snapshots/seattlerb/defn_reg_opt_reg.txt | 0 .../snapshots/seattlerb/defn_splat_arg.txt | 0 .../snapshots/seattlerb/defn_unary_not.txt | 0 .../snapshots/seattlerb/defns_reserved.txt | 0 .../seattlerb/defs_as_arg_with_do_block_inside.txt | 0 .../snapshots/seattlerb/defs_comments.txt | 0 .../snapshots/seattlerb/defs_endless_command.txt | 0 .../seattlerb/defs_endless_command_rescue.txt | 0 .../snapshots/seattlerb/defs_kwarg.txt | 0 .../snapshots/seattlerb/defs_oneliner.txt | 0 .../snapshots/seattlerb/defs_oneliner_eq2.txt | 0 .../snapshots/seattlerb/defs_oneliner_rescue.txt | 0 .../snapshots/seattlerb/difficult0_.txt | 0 .../seattlerb/difficult1_line_numbers.txt | 0 .../seattlerb/difficult1_line_numbers2.txt | 0 .../snapshots/seattlerb/difficult2_.txt | 0 .../snapshots/seattlerb/difficult3_.txt | 0 .../snapshots/seattlerb/difficult3_2.txt | 0 .../snapshots/seattlerb/difficult3_3.txt | 0 .../snapshots/seattlerb/difficult3_4.txt | 0 .../snapshots/seattlerb/difficult3_5.txt | 0 .../snapshots/seattlerb/difficult3__10.txt | 0 .../snapshots/seattlerb/difficult3__11.txt | 0 .../snapshots/seattlerb/difficult3__12.txt | 0 .../snapshots/seattlerb/difficult3__6.txt | 0 .../snapshots/seattlerb/difficult3__7.txt | 0 .../snapshots/seattlerb/difficult3__8.txt | 0 .../snapshots/seattlerb/difficult3__9.txt | 0 .../seattlerb/difficult4__leading_dots.txt | 0 .../seattlerb/difficult4__leading_dots2.txt | 0 .../snapshots/seattlerb/difficult6_.txt | 0 .../snapshots/seattlerb/difficult6__7.txt | 0 .../snapshots/seattlerb/difficult6__8.txt | 0 .../snapshots/seattlerb/difficult7_.txt | 0 .../{yarp => prism}/snapshots/seattlerb/do_bug.txt | 0 .../snapshots/seattlerb/do_lambda.txt | 0 .../snapshots/seattlerb/dot2_nil__26.txt | 0 .../snapshots/seattlerb/dot3_nil__26.txt | 0 .../snapshots/seattlerb/dstr_evstr.txt | 0 .../snapshots/seattlerb/dstr_evstr_empty_end.txt | 0 .../snapshots/seattlerb/dstr_lex_state.txt | 0 .../snapshots/seattlerb/dstr_str.txt | 0 .../snapshots/seattlerb/dsym_esc_to_sym.txt | 0 .../snapshots/seattlerb/dsym_to_sym.txt | 0 .../snapshots/seattlerb/eq_begin_line_numbers.txt | 0 ...eq_begin_why_wont_people_use_their_spacebar.txt | 0 .../snapshots/seattlerb/evstr_evstr.txt | 0 .../snapshots/seattlerb/evstr_str.txt | 0 .../snapshots/seattlerb/expr_not_bang.txt | 0 test/{yarp => prism}/snapshots/seattlerb/f_kw.txt | 0 .../snapshots/seattlerb/f_kw__required.txt | 0 .../snapshots/seattlerb/flip2_env_lvar.txt | 0 .../snapshots/seattlerb/float_with_if_modifier.txt | 0 .../seattlerb/heredoc__backslash_dos_format.txt | 0 .../snapshots/seattlerb/heredoc_backslash_nl.txt | 0 .../snapshots/seattlerb/heredoc_bad_hex_escape.txt | 0 .../snapshots/seattlerb/heredoc_bad_oct_escape.txt | 0 .../snapshots/seattlerb/heredoc_comma_arg.txt | 0 .../snapshots/seattlerb/heredoc_lineno.txt | 0 .../snapshots/seattlerb/heredoc_nested.txt | 0 .../snapshots/seattlerb/heredoc_squiggly.txt | 0 ...edoc_squiggly_blank_line_plus_interpolation.txt | 0 .../seattlerb/heredoc_squiggly_blank_lines.txt | 0 .../snapshots/seattlerb/heredoc_squiggly_empty.txt | 0 .../seattlerb/heredoc_squiggly_interp.txt | 0 .../seattlerb/heredoc_squiggly_no_indent.txt | 0 .../snapshots/seattlerb/heredoc_squiggly_tabs.txt | 0 .../seattlerb/heredoc_squiggly_tabs_extra.txt | 0 .../heredoc_squiggly_visually_blank_lines.txt | 0 .../heredoc_trailing_slash_continued_call.txt | 0 .../snapshots/seattlerb/heredoc_unicode.txt | 0 .../heredoc_with_carriage_return_escapes.txt | 0 ...eredoc_with_carriage_return_escapes_windows.txt | 0 .../heredoc_with_extra_carriage_horrible_mix.txt | 0 .../heredoc_with_extra_carriage_returns.txt | 0 ...heredoc_with_extra_carriage_returns_windows.txt | 0 ...h_interpolation_and_carriage_return_escapes.txt | 0 ...olation_and_carriage_return_escapes_windows.txt | 0 .../heredoc_with_not_global_interpolation.txt | 0 .../heredoc_with_only_carriage_returns.txt | 0 .../heredoc_with_only_carriage_returns_windows.txt | 0 .../snapshots/seattlerb/if_elsif.txt | 0 .../snapshots/seattlerb/if_symbol.txt | 0 .../snapshots/seattlerb/in_expr_no_case.txt | 0 .../snapshots/seattlerb/index_0.txt | 0 .../snapshots/seattlerb/index_0_opasgn.txt | 0 .../seattlerb/integer_with_if_modifier.txt | 0 .../interpolated_symbol_array_line_breaks.txt | 0 .../interpolated_word_array_line_breaks.txt | 0 .../snapshots/seattlerb/iter_args_1.txt | 0 .../snapshots/seattlerb/iter_args_10_1.txt | 0 .../snapshots/seattlerb/iter_args_10_2.txt | 0 .../snapshots/seattlerb/iter_args_11_1.txt | 0 .../snapshots/seattlerb/iter_args_11_2.txt | 0 .../snapshots/seattlerb/iter_args_2__19.txt | 0 .../snapshots/seattlerb/iter_args_3.txt | 0 .../snapshots/seattlerb/iter_args_4.txt | 0 .../snapshots/seattlerb/iter_args_5.txt | 0 .../snapshots/seattlerb/iter_args_6.txt | 0 .../snapshots/seattlerb/iter_args_7_1.txt | 0 .../snapshots/seattlerb/iter_args_7_2.txt | 0 .../snapshots/seattlerb/iter_args_8_1.txt | 0 .../snapshots/seattlerb/iter_args_8_2.txt | 0 .../snapshots/seattlerb/iter_args_9_1.txt | 0 .../snapshots/seattlerb/iter_args_9_2.txt | 0 .../snapshots/seattlerb/iter_kwarg.txt | 0 .../snapshots/seattlerb/iter_kwarg_kwsplat.txt | 0 .../snapshots/seattlerb/label_vs_string.txt | 0 .../snapshots/seattlerb/lambda_do_vs_brace.txt | 0 .../snapshots/seattlerb/lasgn_arg_rescue_arg.txt | 0 .../seattlerb/lasgn_call_bracket_rescue_arg.txt | 0 .../seattlerb/lasgn_call_nobracket_rescue_arg.txt | 0 .../snapshots/seattlerb/lasgn_command.txt | 0 .../snapshots/seattlerb/lasgn_env.txt | 0 .../snapshots/seattlerb/lasgn_ivar_env.txt | 0 .../seattlerb/lasgn_lasgn_command_call.txt | 0 .../snapshots/seattlerb/lasgn_middle_splat.txt | 0 .../snapshots/seattlerb/magic_encoding_comment.txt | 0 .../snapshots/seattlerb/masgn_anon_splat_arg.txt | 0 .../snapshots/seattlerb/masgn_arg_colon_arg.txt | 0 .../snapshots/seattlerb/masgn_arg_ident.txt | 0 .../snapshots/seattlerb/masgn_arg_splat_arg.txt | 0 .../snapshots/seattlerb/masgn_colon2.txt | 0 .../snapshots/seattlerb/masgn_colon3.txt | 0 .../snapshots/seattlerb/masgn_command_call.txt | 0 .../snapshots/seattlerb/masgn_double_paren.txt | 0 .../snapshots/seattlerb/masgn_lhs_splat.txt | 0 .../snapshots/seattlerb/masgn_paren.txt | 0 .../snapshots/seattlerb/masgn_splat_arg.txt | 0 .../snapshots/seattlerb/masgn_splat_arg_arg.txt | 0 .../snapshots/seattlerb/masgn_star.txt | 0 .../snapshots/seattlerb/masgn_var_star_var.txt | 0 .../snapshots/seattlerb/messy_op_asgn_lineno.txt | 0 .../seattlerb/method_call_assoc_trailing_comma.txt | 0 .../seattlerb/method_call_trailing_comma.txt | 0 .../snapshots/seattlerb/mlhs_back_anonsplat.txt | 0 .../snapshots/seattlerb/mlhs_back_splat.txt | 0 .../snapshots/seattlerb/mlhs_front_anonsplat.txt | 0 .../snapshots/seattlerb/mlhs_front_splat.txt | 0 .../snapshots/seattlerb/mlhs_keyword.txt | 0 .../snapshots/seattlerb/mlhs_mid_anonsplat.txt | 0 .../snapshots/seattlerb/mlhs_mid_splat.txt | 0 .../snapshots/seattlerb/mlhs_rescue.txt | 0 .../snapshots/seattlerb/module_comments.txt | 0 .../seattlerb/multiline_hash_declaration.txt | 0 .../non_interpolated_symbol_array_line_breaks.txt | 0 .../non_interpolated_word_array_line_breaks.txt | 0 .../snapshots/seattlerb/op_asgn_command_call.txt | 0 .../seattlerb/op_asgn_dot_ident_command_call.txt | 0 .../seattlerb/op_asgn_index_command_call.txt | 0 .../op_asgn_primary_colon_const_command_call.txt | 0 .../op_asgn_primary_colon_identifier1.txt | 0 ..._asgn_primary_colon_identifier_command_call.txt | 0 .../op_asgn_val_dot_ident_command_call.txt | 0 .../snapshots/seattlerb/parse_def_special_name.txt | 0 .../snapshots/seattlerb/parse_if_not_canonical.txt | 0 .../seattlerb/parse_if_not_noncanonical.txt | 0 .../snapshots/seattlerb/parse_line_block.txt | 0 .../seattlerb/parse_line_block_inline_comment.txt | 0 ..._line_block_inline_comment_leading_newlines.txt | 0 .../parse_line_block_inline_multiline_comment.txt | 0 ...rse_line_call_ivar_arg_no_parens_line_break.txt | 0 .../parse_line_call_ivar_line_break_paren.txt | 0 .../seattlerb/parse_line_call_no_args.txt | 0 .../seattlerb/parse_line_defn_complex.txt | 0 .../seattlerb/parse_line_defn_no_parens.txt | 0 .../seattlerb/parse_line_defn_no_parens_args.txt | 0 .../snapshots/seattlerb/parse_line_dot2.txt | 0 .../snapshots/seattlerb/parse_line_dot2_open.txt | 0 .../snapshots/seattlerb/parse_line_dot3.txt | 0 .../snapshots/seattlerb/parse_line_dot3_open.txt | 0 .../seattlerb/parse_line_dstr_escaped_newline.txt | 0 .../seattlerb/parse_line_dstr_soft_newline.txt | 0 .../seattlerb/parse_line_evstr_after_break.txt | 0 .../snapshots/seattlerb/parse_line_hash_lit.txt | 0 .../snapshots/seattlerb/parse_line_heredoc.txt | 0 .../seattlerb/parse_line_heredoc_evstr.txt | 0 .../seattlerb/parse_line_heredoc_hardnewline.txt | 0 .../seattlerb/parse_line_heredoc_regexp_chars.txt | 0 .../seattlerb/parse_line_iter_call_no_parens.txt | 0 .../seattlerb/parse_line_iter_call_parens.txt | 0 .../seattlerb/parse_line_multiline_str.txt | 0 .../parse_line_multiline_str_literal_n.txt | 0 .../snapshots/seattlerb/parse_line_newlines.txt | 0 .../snapshots/seattlerb/parse_line_op_asgn.txt | 0 .../snapshots/seattlerb/parse_line_postexe.txt | 0 .../snapshots/seattlerb/parse_line_preexe.txt | 0 .../snapshots/seattlerb/parse_line_rescue.txt | 0 .../snapshots/seattlerb/parse_line_return.txt | 0 .../parse_line_str_with_newline_escape.txt | 0 .../snapshots/seattlerb/parse_line_to_ary.txt | 0 .../seattlerb/parse_line_trailing_newlines.txt | 0 .../seattlerb/parse_opt_call_args_assocs_comma.txt | 0 .../seattlerb/parse_opt_call_args_lit_comma.txt | 0 .../snapshots/seattlerb/parse_pattern_019.txt | 0 .../snapshots/seattlerb/parse_pattern_044.txt | 0 .../snapshots/seattlerb/parse_pattern_051.txt | 0 .../snapshots/seattlerb/parse_pattern_058.txt | 0 .../snapshots/seattlerb/parse_pattern_058_2.txt | 0 .../snapshots/seattlerb/parse_pattern_069.txt | 0 .../snapshots/seattlerb/parse_pattern_076.txt | 0 .../seattlerb/parse_until_not_canonical.txt | 0 .../seattlerb/parse_until_not_noncanonical.txt | 0 .../seattlerb/parse_while_not_canonical.txt | 0 .../seattlerb/parse_while_not_noncanonical.txt | 0 .../snapshots/seattlerb/pctW_lineno.txt | 0 .../snapshots/seattlerb/pct_Q_backslash_nl.txt | 0 .../{yarp => prism}/snapshots/seattlerb/pct_nl.txt | 0 .../seattlerb/pct_w_heredoc_interp_nested.txt | 0 .../snapshots/seattlerb/pipe_semicolon.txt | 0 .../snapshots/seattlerb/pipe_space.txt | 0 .../snapshots/seattlerb/qWords_space.txt | 0 .../snapshots/seattlerb/qsymbols.txt | 0 .../snapshots/seattlerb/qsymbols_empty.txt | 0 .../snapshots/seattlerb/qsymbols_empty_space.txt | 0 .../snapshots/seattlerb/qsymbols_interp.txt | 0 .../snapshots/seattlerb/quoted_symbol_hash_arg.txt | 0 .../snapshots/seattlerb/quoted_symbol_keys.txt | 0 .../snapshots/seattlerb/qw_escape.txt | 0 .../snapshots/seattlerb/qw_escape_term.txt | 0 .../snapshots/seattlerb/qwords_empty.txt | 0 .../seattlerb/read_escape_unicode_curlies.txt | 0 .../snapshots/seattlerb/read_escape_unicode_h4.txt | 0 .../{yarp => prism}/snapshots/seattlerb/regexp.txt | 0 .../snapshots/seattlerb/regexp_esc_C_slash.txt | 0 .../snapshots/seattlerb/regexp_esc_u.txt | 0 .../snapshots/seattlerb/regexp_escape_extended.txt | 0 .../snapshots/seattlerb/regexp_unicode_curlies.txt | 0 .../seattlerb/required_kwarg_no_value.txt | 0 .../seattlerb/rescue_do_end_ensure_result.txt | 0 .../snapshots/seattlerb/rescue_do_end_no_raise.txt | 0 .../snapshots/seattlerb/rescue_do_end_raised.txt | 0 .../snapshots/seattlerb/rescue_do_end_rescued.txt | 0 .../snapshots/seattlerb/rescue_in_block.txt | 0 .../snapshots/seattlerb/rescue_parens.txt | 0 .../snapshots/seattlerb/return_call_assocs.txt | 0 .../snapshots/seattlerb/rhs_asgn.txt | 0 .../snapshots/seattlerb/ruby21_numbers.txt | 0 .../snapshots/seattlerb/safe_attrasgn.txt | 0 .../snapshots/seattlerb/safe_attrasgn_constant.txt | 0 .../snapshots/seattlerb/safe_call.txt | 0 .../seattlerb/safe_call_after_newline.txt | 0 .../snapshots/seattlerb/safe_call_dot_parens.txt | 0 .../snapshots/seattlerb/safe_call_newline.txt | 0 .../snapshots/seattlerb/safe_call_operator.txt | 0 .../snapshots/seattlerb/safe_call_rhs_newline.txt | 0 .../snapshots/seattlerb/safe_calls.txt | 0 .../snapshots/seattlerb/safe_op_asgn.txt | 0 .../snapshots/seattlerb/safe_op_asgn2.txt | 0 .../seattlerb/slashy_newlines_within_string.txt | 0 .../snapshots/seattlerb/stabby_arg_no_paren.txt | 0 .../stabby_arg_opt_splat_arg_block_omfg.txt | 0 .../snapshots/seattlerb/stabby_block_iter_call.txt | 0 .../stabby_block_iter_call_no_target_with_arg.txt | 0 .../snapshots/seattlerb/stabby_block_kw.txt | 0 .../seattlerb/stabby_block_kw__required.txt | 0 .../snapshots/seattlerb/stabby_proc_scope.txt | 0 .../snapshots/seattlerb/str_backslashes.txt | 0 .../str_double_double_escaped_newline.txt | 0 .../seattlerb/str_double_escaped_newline.txt | 0 .../snapshots/seattlerb/str_double_newline.txt | 0 .../snapshots/seattlerb/str_evstr.txt | 0 .../snapshots/seattlerb/str_evstr_escape.txt | 0 .../snapshots/seattlerb/str_heredoc_interp.txt | 0 .../seattlerb/str_interp_ternary_or_label.txt | 0 .../seattlerb/str_lit_concat_bad_encodings.txt | 0 .../seattlerb/str_newline_hash_line_number.txt | 0 .../snapshots/seattlerb/str_pct_Q_nested.txt | 0 .../snapshots/seattlerb/str_pct_nested_nested.txt | 0 .../snapshots/seattlerb/str_pct_q.txt | 0 .../str_single_double_escaped_newline.txt | 0 .../seattlerb/str_single_escaped_newline.txt | 0 .../snapshots/seattlerb/str_single_newline.txt | 0 .../snapshots/seattlerb/str_str.txt | 0 .../snapshots/seattlerb/str_str_str.txt | 0 .../snapshots/seattlerb/super_arg.txt | 0 .../snapshots/seattlerb/symbol_empty.txt | 0 .../snapshots/seattlerb/symbol_list.txt | 0 .../snapshots/seattlerb/symbols.txt | 0 .../snapshots/seattlerb/symbols_empty.txt | 0 .../snapshots/seattlerb/symbols_empty_space.txt | 0 .../snapshots/seattlerb/symbols_interp.txt | 0 .../{yarp => prism}/snapshots/seattlerb/thingy.txt | 0 .../snapshots/seattlerb/uminus_float.txt | 0 .../snapshots/seattlerb/unary_minus.txt | 0 .../snapshots/seattlerb/unary_plus.txt | 0 .../snapshots/seattlerb/unary_plus_on_literal.txt | 0 .../snapshots/seattlerb/unary_tilde.txt | 0 .../snapshots/seattlerb/utf8_bom.txt | 0 .../snapshots/seattlerb/when_splat.txt | 0 .../snapshots/seattlerb/words_interp.txt | 0 .../snapshots/seattlerb/yield_arg.txt | 0 .../snapshots/seattlerb/yield_call_assocs.txt | 0 .../snapshots/seattlerb/yield_empty_parens.txt | 0 .../snapshots/single_quote_heredocs.txt | 0 .../{yarp => prism}/snapshots/spanning_heredoc.txt | 0 test/{yarp => prism}/snapshots/strings.txt | 0 test/{yarp => prism}/snapshots/super.txt | 0 test/{yarp => prism}/snapshots/symbols.txt | 0 .../{yarp => prism}/snapshots/ternary_operator.txt | 0 test/{yarp => prism}/snapshots/tilde_heredocs.txt | 0 test/{yarp => prism}/snapshots/undef.txt | 0 test/{yarp => prism}/snapshots/unescaping.txt | 0 test/{yarp => prism}/snapshots/unless.txt | 0 .../snapshots/unparser/corpus/literal/alias.txt | 0 .../unparser/corpus/literal/assignment.txt | 0 .../snapshots/unparser/corpus/literal/block.txt | 0 .../snapshots/unparser/corpus/literal/case.txt | 0 .../snapshots/unparser/corpus/literal/class.txt | 0 .../snapshots/unparser/corpus/literal/control.txt | 0 .../snapshots/unparser/corpus/literal/def.txt | 0 .../snapshots/unparser/corpus/literal/defined.txt | 0 .../snapshots/unparser/corpus/literal/defs.txt | 0 .../snapshots/unparser/corpus/literal/dstr.txt | 0 .../snapshots/unparser/corpus/literal/empty.txt | 0 .../unparser/corpus/literal/empty_begin.txt | 0 .../snapshots/unparser/corpus/literal/flipflop.txt | 0 .../snapshots/unparser/corpus/literal/for.txt | 0 .../snapshots/unparser/corpus/literal/hookexe.txt | 0 .../snapshots/unparser/corpus/literal/if.txt | 0 .../snapshots/unparser/corpus/literal/kwbegin.txt | 0 .../snapshots/unparser/corpus/literal/lambda.txt | 0 .../snapshots/unparser/corpus/literal/literal.txt | 0 .../snapshots/unparser/corpus/literal/module.txt | 0 .../snapshots/unparser/corpus/literal/opasgn.txt | 0 .../snapshots/unparser/corpus/literal/pattern.txt | 0 .../snapshots/unparser/corpus/literal/pragma.txt | 0 .../snapshots/unparser/corpus/literal/range.txt | 0 .../snapshots/unparser/corpus/literal/rescue.txt | 0 .../snapshots/unparser/corpus/literal/send.txt | 0 .../snapshots/unparser/corpus/literal/since/27.txt | 0 .../snapshots/unparser/corpus/literal/since/30.txt | 0 .../snapshots/unparser/corpus/literal/since/31.txt | 0 .../snapshots/unparser/corpus/literal/since/32.txt | 0 .../unparser/corpus/literal/singletons.txt | 0 .../snapshots/unparser/corpus/literal/super.txt | 0 .../snapshots/unparser/corpus/literal/unary.txt | 0 .../snapshots/unparser/corpus/literal/undef.txt | 0 .../unparser/corpus/literal/variables.txt | 0 .../snapshots/unparser/corpus/literal/while.txt | 0 .../snapshots/unparser/corpus/literal/yield.txt | 0 .../snapshots/unparser/corpus/semantic/and.txt | 0 .../snapshots/unparser/corpus/semantic/block.txt | 0 .../snapshots/unparser/corpus/semantic/def.txt | 0 .../snapshots/unparser/corpus/semantic/dstr.txt | 0 .../snapshots/unparser/corpus/semantic/kwbegin.txt | 0 .../snapshots/unparser/corpus/semantic/literal.txt | 0 .../snapshots/unparser/corpus/semantic/send.txt | 0 .../snapshots/unparser/corpus/semantic/undef.txt | 0 .../snapshots/unparser/corpus/semantic/while.txt | 0 test/{yarp => prism}/snapshots/until.txt | 0 test/{yarp => prism}/snapshots/variables.txt | 0 test/{yarp => prism}/snapshots/while.txt | 0 .../snapshots/whitequark/__ENCODING__.txt | 0 .../snapshots/whitequark/__ENCODING___legacy_.txt | 0 .../{yarp => prism}/snapshots/whitequark/alias.txt | 0 .../snapshots/whitequark/alias_gvar.txt | 0 .../ambiuous_quoted_label_in_ternary_operator.txt | 0 test/{yarp => prism}/snapshots/whitequark/and.txt | 0 .../snapshots/whitequark/and_asgn.txt | 0 .../snapshots/whitequark/and_or_masgn.txt | 0 .../snapshots/whitequark/anonymous_blockarg.txt | 0 test/{yarp => prism}/snapshots/whitequark/arg.txt | 0 .../snapshots/whitequark/arg_duplicate_ignored.txt | 0 .../snapshots/whitequark/arg_label.txt | 0 .../snapshots/whitequark/arg_scope.txt | 0 test/{yarp => prism}/snapshots/whitequark/args.txt | 0 .../snapshots/whitequark/args_args_assocs.txt | 0 .../whitequark/args_args_assocs_comma.txt | 0 .../snapshots/whitequark/args_args_comma.txt | 0 .../snapshots/whitequark/args_args_star.txt | 0 .../snapshots/whitequark/args_assocs.txt | 0 .../snapshots/whitequark/args_assocs_comma.txt | 0 .../snapshots/whitequark/args_assocs_legacy.txt | 0 .../snapshots/whitequark/args_block_pass.txt | 0 .../snapshots/whitequark/args_cmd.txt | 0 .../snapshots/whitequark/args_star.txt | 0 .../snapshots/whitequark/array_assocs.txt | 0 .../snapshots/whitequark/array_plain.txt | 0 .../snapshots/whitequark/array_splat.txt | 0 .../snapshots/whitequark/array_symbols.txt | 0 .../snapshots/whitequark/array_symbols_empty.txt | 0 .../snapshots/whitequark/array_symbols_interp.txt | 0 .../snapshots/whitequark/array_words.txt | 0 .../snapshots/whitequark/array_words_empty.txt | 0 .../snapshots/whitequark/array_words_interp.txt | 0 .../snapshots/whitequark/asgn_cmd.txt | 0 .../snapshots/whitequark/asgn_mrhs.txt | 0 .../snapshots/whitequark/back_ref.txt | 0 test/{yarp => prism}/snapshots/whitequark/bang.txt | 0 .../snapshots/whitequark/bang_cmd.txt | 0 .../snapshots/whitequark/begin_cmdarg.txt | 0 .../whitequark/beginless_erange_after_newline.txt | 0 .../whitequark/beginless_irange_after_newline.txt | 0 .../snapshots/whitequark/beginless_range.txt | 0 .../snapshots/whitequark/blockarg.txt | 0 .../snapshots/whitequark/blockargs.txt | 0 .../{yarp => prism}/snapshots/whitequark/break.txt | 0 .../snapshots/whitequark/break_block.txt | 0 .../snapshots/whitequark/bug_435.txt | 0 .../snapshots/whitequark/bug_447.txt | 0 .../snapshots/whitequark/bug_452.txt | 0 .../snapshots/whitequark/bug_466.txt | 0 .../snapshots/whitequark/bug_473.txt | 0 .../snapshots/whitequark/bug_480.txt | 0 .../snapshots/whitequark/bug_481.txt | 0 .../whitequark/bug_ascii_8bit_in_literal.txt | 0 .../whitequark/bug_cmd_string_lookahead.txt | 0 .../snapshots/whitequark/bug_cmdarg.txt | 0 .../whitequark/bug_def_no_paren_eql_begin.txt | 0 .../whitequark/bug_do_block_in_call_args.txt | 0 .../whitequark/bug_do_block_in_cmdarg.txt | 0 .../whitequark/bug_do_block_in_hash_brace.txt | 0 .../snapshots/whitequark/bug_heredoc_do.txt | 0 .../snapshots/whitequark/bug_interp_single.txt | 0 .../snapshots/whitequark/bug_lambda_leakage.txt | 0 .../whitequark/bug_regex_verification.txt | 0 .../snapshots/whitequark/bug_rescue_empty_else.txt | 0 .../whitequark/bug_while_not_parens_do.txt | 0 .../snapshots/whitequark/case_cond.txt | 0 .../snapshots/whitequark/case_cond_else.txt | 0 .../snapshots/whitequark/case_expr.txt | 0 .../snapshots/whitequark/case_expr_else.txt | 0 .../snapshots/whitequark/casgn_scoped.txt | 0 .../snapshots/whitequark/casgn_toplevel.txt | 0 .../snapshots/whitequark/casgn_unscoped.txt | 0 .../snapshots/whitequark/character.txt | 0 .../{yarp => prism}/snapshots/whitequark/class.txt | 0 .../whitequark/class_definition_in_while_cond.txt | 0 .../snapshots/whitequark/class_super.txt | 0 .../snapshots/whitequark/class_super_label.txt | 0 .../whitequark/comments_before_leading_dot__27.txt | 0 .../snapshots/whitequark/complex.txt | 0 .../snapshots/whitequark/cond_begin.txt | 0 .../snapshots/whitequark/cond_begin_masgn.txt | 0 .../snapshots/whitequark/cond_eflipflop.txt | 0 .../snapshots/whitequark/cond_iflipflop.txt | 0 .../whitequark/cond_match_current_line.txt | 0 .../snapshots/whitequark/const_op_asgn.txt | 0 .../snapshots/whitequark/const_scoped.txt | 0 .../snapshots/whitequark/const_toplevel.txt | 0 .../snapshots/whitequark/const_unscoped.txt | 0 .../{yarp => prism}/snapshots/whitequark/cpath.txt | 0 test/{yarp => prism}/snapshots/whitequark/cvar.txt | 0 .../snapshots/whitequark/cvasgn.txt | 0 .../snapshots/whitequark/dedenting_heredoc.txt | 0 ...nterpolating_heredoc_fake_line_continuation.txt | 0 ...non_interpolating_heredoc_line_continuation.txt | 0 test/{yarp => prism}/snapshots/whitequark/def.txt | 0 .../snapshots/whitequark/defined.txt | 0 test/{yarp => prism}/snapshots/whitequark/defs.txt | 0 .../snapshots/whitequark/empty_stmt.txt | 0 .../whitequark/endless_comparison_method.txt | 0 .../snapshots/whitequark/endless_method.txt | 0 .../whitequark/endless_method_command_syntax.txt | 0 .../endless_method_forwarded_args_legacy.txt | 0 .../whitequark/endless_method_with_rescue_mod.txt | 0 .../whitequark/endless_method_without_args.txt | 0 .../snapshots/whitequark/ensure.txt | 0 .../snapshots/whitequark/ensure_empty.txt | 0 .../{yarp => prism}/snapshots/whitequark/false.txt | 0 .../{yarp => prism}/snapshots/whitequark/float.txt | 0 test/{yarp => prism}/snapshots/whitequark/for.txt | 0 .../snapshots/whitequark/for_mlhs.txt | 0 .../snapshots/whitequark/forward_arg.txt | 0 .../whitequark/forward_arg_with_open_args.txt | 0 .../snapshots/whitequark/forward_args_legacy.txt | 0 .../forwarded_argument_with_kwrestarg.txt | 0 .../whitequark/forwarded_argument_with_restarg.txt | 0 .../snapshots/whitequark/forwarded_kwrestarg.txt | 0 .../forwarded_kwrestarg_with_additional_kwarg.txt | 0 .../snapshots/whitequark/forwarded_restarg.txt | 0 test/{yarp => prism}/snapshots/whitequark/gvar.txt | 0 .../snapshots/whitequark/gvasgn.txt | 0 .../snapshots/whitequark/hash_empty.txt | 0 .../snapshots/whitequark/hash_hashrocket.txt | 0 .../snapshots/whitequark/hash_kwsplat.txt | 0 .../snapshots/whitequark/hash_label.txt | 0 .../snapshots/whitequark/hash_label_end.txt | 0 .../whitequark/hash_pair_value_omission.txt | 0 .../snapshots/whitequark/heredoc.txt | 0 test/{yarp => prism}/snapshots/whitequark/if.txt | 0 .../snapshots/whitequark/if_else.txt | 0 .../snapshots/whitequark/if_elsif.txt | 0 .../snapshots/whitequark/if_masgn__24.txt | 0 .../snapshots/whitequark/if_mod.txt | 0 .../snapshots/whitequark/if_nl_then.txt | 0 .../whitequark/if_while_after_class__since_32.txt | 0 test/{yarp => prism}/snapshots/whitequark/int.txt | 0 .../snapshots/whitequark/int___LINE__.txt | 0 .../snapshots/whitequark/interp_digit_var.txt | 0 test/{yarp => prism}/snapshots/whitequark/ivar.txt | 0 .../snapshots/whitequark/ivasgn.txt | 0 .../whitequark/keyword_argument_omission.txt | 0 .../{yarp => prism}/snapshots/whitequark/kwarg.txt | 0 .../snapshots/whitequark/kwbegin_compstmt.txt | 0 .../snapshots/whitequark/kwnilarg.txt | 0 .../snapshots/whitequark/kwoptarg.txt | 0 .../kwoptarg_with_kwrestarg_and_forwarded_args.txt | 0 .../snapshots/whitequark/kwrestarg_named.txt | 0 .../snapshots/whitequark/kwrestarg_unnamed.txt | 0 .../whitequark/lbrace_arg_after_command_args.txt | 0 .../whitequark/lparenarg_after_lvar__since_25.txt | 0 test/{yarp => prism}/snapshots/whitequark/lvar.txt | 0 .../snapshots/whitequark/lvar_injecting_match.txt | 0 .../snapshots/whitequark/lvasgn.txt | 0 .../{yarp => prism}/snapshots/whitequark/masgn.txt | 0 .../snapshots/whitequark/masgn_attr.txt | 0 .../snapshots/whitequark/masgn_cmd.txt | 0 .../snapshots/whitequark/masgn_const.txt | 0 .../snapshots/whitequark/masgn_nested.txt | 0 .../snapshots/whitequark/masgn_splat.txt | 0 .../whitequark/method_definition_in_while_cond.txt | 0 .../snapshots/whitequark/module.txt | 0 .../whitequark/multiple_pattern_matches.txt | 0 .../whitequark/newline_in_hash_argument.txt | 0 test/{yarp => prism}/snapshots/whitequark/next.txt | 0 .../snapshots/whitequark/next_block.txt | 0 test/{yarp => prism}/snapshots/whitequark/nil.txt | 0 .../snapshots/whitequark/nil_expression.txt | 0 .../whitequark/non_lvar_injecting_match.txt | 0 test/{yarp => prism}/snapshots/whitequark/not.txt | 0 .../snapshots/whitequark/not_cmd.txt | 0 .../snapshots/whitequark/not_masgn__24.txt | 0 .../snapshots/whitequark/nth_ref.txt | 0 .../whitequark/numbered_args_after_27.txt | 0 .../whitequark/numparam_outside_block.txt | 0 .../snapshots/whitequark/op_asgn.txt | 0 .../snapshots/whitequark/op_asgn_cmd.txt | 0 .../snapshots/whitequark/op_asgn_index.txt | 0 .../snapshots/whitequark/op_asgn_index_cmd.txt | 0 .../snapshots/whitequark/optarg.txt | 0 test/{yarp => prism}/snapshots/whitequark/or.txt | 0 .../snapshots/whitequark/or_asgn.txt | 0 .../snapshots/whitequark/parser_bug_272.txt | 0 .../snapshots/whitequark/parser_bug_490.txt | 0 .../snapshots/whitequark/parser_bug_507.txt | 0 .../snapshots/whitequark/parser_bug_518.txt | 0 .../snapshots/whitequark/parser_bug_525.txt | 0 .../snapshots/whitequark/parser_bug_604.txt | 0 .../snapshots/whitequark/parser_bug_640.txt | 0 .../snapshots/whitequark/parser_bug_645.txt | 0 .../snapshots/whitequark/parser_bug_830.txt | 0 ...r_drops_truncated_parts_of_squiggly_heredoc.txt | 0 .../parser_slash_slash_n_escaping_in_literals.txt | 0 .../pattern_matching__FILE__LINE_literals.txt | 0 .../whitequark/pattern_matching_blank_else.txt | 0 .../snapshots/whitequark/pattern_matching_else.txt | 0 .../whitequark/pattern_matching_single_line.txt | 0 ...single_line_allowed_omission_of_parentheses.txt | 0 .../snapshots/whitequark/postexe.txt | 0 .../snapshots/whitequark/preexe.txt | 0 .../snapshots/whitequark/procarg0.txt | 0 .../snapshots/whitequark/range_exclusive.txt | 0 .../snapshots/whitequark/range_inclusive.txt | 0 .../snapshots/whitequark/rational.txt | 0 test/{yarp => prism}/snapshots/whitequark/redo.txt | 0 .../snapshots/whitequark/regex_interp.txt | 0 .../snapshots/whitequark/regex_plain.txt | 0 .../snapshots/whitequark/resbody_list.txt | 0 .../snapshots/whitequark/resbody_list_mrhs.txt | 0 .../snapshots/whitequark/resbody_list_var.txt | 0 .../snapshots/whitequark/resbody_var.txt | 0 .../snapshots/whitequark/rescue.txt | 0 .../snapshots/whitequark/rescue_else.txt | 0 .../snapshots/whitequark/rescue_else_ensure.txt | 0 .../snapshots/whitequark/rescue_ensure.txt | 0 .../whitequark/rescue_in_lambda_block.txt | 0 .../snapshots/whitequark/rescue_mod.txt | 0 .../snapshots/whitequark/rescue_mod_asgn.txt | 0 .../snapshots/whitequark/rescue_mod_masgn.txt | 0 .../snapshots/whitequark/rescue_mod_op_assign.txt | 0 .../whitequark/rescue_without_begin_end.txt | 0 .../snapshots/whitequark/restarg_named.txt | 0 .../snapshots/whitequark/restarg_unnamed.txt | 0 .../{yarp => prism}/snapshots/whitequark/retry.txt | 0 .../snapshots/whitequark/return.txt | 0 .../snapshots/whitequark/return_block.txt | 0 .../snapshots/whitequark/ruby_bug_10279.txt | 0 .../snapshots/whitequark/ruby_bug_10653.txt | 0 .../snapshots/whitequark/ruby_bug_11107.txt | 0 .../snapshots/whitequark/ruby_bug_11380.txt | 0 .../snapshots/whitequark/ruby_bug_11873.txt | 0 .../snapshots/whitequark/ruby_bug_11873_a.txt | 0 .../snapshots/whitequark/ruby_bug_11873_b.txt | 0 .../snapshots/whitequark/ruby_bug_11989.txt | 0 .../snapshots/whitequark/ruby_bug_11990.txt | 0 .../snapshots/whitequark/ruby_bug_12073.txt | 0 .../snapshots/whitequark/ruby_bug_12402.txt | 0 .../snapshots/whitequark/ruby_bug_12669.txt | 0 .../snapshots/whitequark/ruby_bug_12686.txt | 0 .../snapshots/whitequark/ruby_bug_13547.txt | 0 .../snapshots/whitequark/ruby_bug_14690.txt | 0 .../snapshots/whitequark/ruby_bug_15789.txt | 0 .../snapshots/whitequark/ruby_bug_9669.txt | 0 .../snapshots/whitequark/sclass.txt | 0 test/{yarp => prism}/snapshots/whitequark/self.txt | 0 .../snapshots/whitequark/send_attr_asgn.txt | 0 .../whitequark/send_attr_asgn_conditional.txt | 0 .../snapshots/whitequark/send_binary_op.txt | 0 .../snapshots/whitequark/send_block_chain_cmd.txt | 0 .../whitequark/send_block_conditional.txt | 0 .../snapshots/whitequark/send_call.txt | 0 .../snapshots/whitequark/send_conditional.txt | 0 .../snapshots/whitequark/send_index.txt | 0 .../snapshots/whitequark/send_index_asgn.txt | 0 .../whitequark/send_index_asgn_legacy.txt | 0 .../snapshots/whitequark/send_index_cmd.txt | 0 .../snapshots/whitequark/send_index_legacy.txt | 0 .../snapshots/whitequark/send_lambda.txt | 0 .../snapshots/whitequark/send_lambda_args.txt | 0 .../whitequark/send_lambda_args_noparen.txt | 0 .../whitequark/send_lambda_args_shadow.txt | 0 .../snapshots/whitequark/send_lambda_legacy.txt | 0 .../whitequark/send_op_asgn_conditional.txt | 0 .../snapshots/whitequark/send_plain.txt | 0 .../snapshots/whitequark/send_plain_cmd.txt | 0 .../snapshots/whitequark/send_self.txt | 0 .../snapshots/whitequark/send_self_block.txt | 0 .../snapshots/whitequark/send_unary_op.txt | 0 .../whitequark/slash_newline_in_heredocs.txt | 0 .../snapshots/whitequark/space_args_arg.txt | 0 .../snapshots/whitequark/space_args_arg_block.txt | 0 .../snapshots/whitequark/space_args_arg_call.txt | 0 .../whitequark/space_args_arg_newline.txt | 0 .../snapshots/whitequark/space_args_block.txt | 0 .../snapshots/whitequark/space_args_cmd.txt | 0 .../snapshots/whitequark/string___FILE__.txt | 0 .../snapshots/whitequark/string_concat.txt | 0 .../snapshots/whitequark/string_dvar.txt | 0 .../snapshots/whitequark/string_interp.txt | 0 .../snapshots/whitequark/string_plain.txt | 0 .../{yarp => prism}/snapshots/whitequark/super.txt | 0 .../snapshots/whitequark/super_block.txt | 0 .../snapshots/whitequark/symbol_interp.txt | 0 .../snapshots/whitequark/symbol_plain.txt | 0 .../snapshots/whitequark/ternary.txt | 0 .../whitequark/ternary_ambiguous_symbol.txt | 0 .../snapshots/whitequark/trailing_forward_arg.txt | 0 test/{yarp => prism}/snapshots/whitequark/true.txt | 0 .../whitequark/unary_num_pow_precedence.txt | 0 .../{yarp => prism}/snapshots/whitequark/undef.txt | 0 .../snapshots/whitequark/unless.txt | 0 .../snapshots/whitequark/unless_else.txt | 0 .../snapshots/whitequark/unless_mod.txt | 0 .../{yarp => prism}/snapshots/whitequark/until.txt | 0 .../snapshots/whitequark/until_mod.txt | 0 .../snapshots/whitequark/until_post.txt | 0 .../snapshots/whitequark/var_and_asgn.txt | 0 .../snapshots/whitequark/var_op_asgn.txt | 0 .../snapshots/whitequark/var_op_asgn_cmd.txt | 0 .../snapshots/whitequark/var_or_asgn.txt | 0 .../snapshots/whitequark/when_multi.txt | 0 .../snapshots/whitequark/when_splat.txt | 0 .../snapshots/whitequark/when_then.txt | 0 .../{yarp => prism}/snapshots/whitequark/while.txt | 0 .../snapshots/whitequark/while_mod.txt | 0 .../snapshots/whitequark/while_post.txt | 0 .../snapshots/whitequark/xstring_interp.txt | 0 .../snapshots/whitequark/xstring_plain.txt | 0 .../{yarp => prism}/snapshots/whitequark/yield.txt | 0 .../snapshots/whitequark/zsuper.txt | 0 test/{yarp => prism}/snapshots/xstring.txt | 0 test/{yarp => prism}/snapshots/yield.txt | 0 test/{yarp => prism}/test_helper.rb | 6 +- test/{yarp => prism}/unescape_test.rb | 4 +- test/{yarp => prism}/version_test.rb | 2 +- test/ruby/test_ast.rb | 71 + test/ruby/test_rubyoptions.rb | 12 + test/ruby/test_thread_queue.rb | 9 + thread_sync.c | 17 + tool/leaked-globals | 2 +- tool/sync_default_gems.rb | 46 +- tool/update-deps | 16 +- vm.c | 10 +- win32/Makefile.sub | 6 +- yarp/defines.h | 45 - yarp/diagnostic.c | 285 - yarp/diagnostic.h | 229 - yarp/enc/yp_big5.c | 52 - yarp/enc/yp_euc_jp.c | 58 - yarp/enc/yp_shift_jis.c | 56 - yarp/enc/yp_windows_31j.c | 56 - yarp/extension.h | 18 - yarp/node.h | 42 - yarp/pack.c | 493 - yarp/pack.h | 141 - yarp/regexp.h | 19 - yarp/templates/include/yarp/ast.h.erb | 116 - yarp/templates/src/node.c.erb | 157 - yarp/templates/src/prettyprint.c.erb | 111 - yarp/templates/src/serialize.c.erb | 299 - yarp/unescape.h | 48 - yarp/util/yp_buffer.c | 101 - yarp/util/yp_buffer.h | 51 - yarp/util/yp_memchr.h | 14 - yarp/util/yp_state_stack.h | 24 - yarp/util/yp_string_list.c | 29 - yarp/util/yp_string_list.h | 25 - yarp/version.h | 4 - yarp/yarp.h | 82 - yarp/yarp_init.c | 9 - 1985 files changed, 16468 insertions(+), 13689 deletions(-) create mode 100644 lib/prism.rb create mode 100644 lib/prism/debug.rb rename lib/{yarp/desugar_visitor.rb => prism/desugar_compiler.rb} (96%) rename lib/{yarp => prism}/ffi.rb (66%) rename lib/{yarp => prism}/lex_compat.rb (94%) create mode 100644 lib/prism/node_ext.rb create mode 100644 lib/prism/node_inspector.rb rename lib/{yarp => prism}/pack.rb (99%) create mode 100644 lib/prism/parse_result.rb rename lib/{yarp => prism}/parse_result/comments.rb (99%) rename lib/{yarp => prism}/parse_result/newlines.rb (99%) rename lib/{yarp => prism}/pattern.rb (88%) create mode 100644 lib/prism/prism.gemspec rename lib/{yarp => prism}/ripper_compat.rb (96%) delete mode 100644 lib/yarp.rb delete mode 100644 lib/yarp/language_server.rb delete mode 100644 lib/yarp/version.rb delete mode 100644 lib/yarp/yarp.gemspec rename {yarp => prism}/api_pack.c (64%) rename {yarp => prism}/config.yml (99%) create mode 100644 prism/defines.h create mode 100644 prism/diagnostic.c create mode 100644 prism/diagnostic.h create mode 100644 prism/enc/pm_big5.c rename yarp/enc/yp_encoding.h => prism/enc/pm_encoding.h (54%) create mode 100644 prism/enc/pm_euc_jp.c rename yarp/enc/yp_gbk.c => prism/enc/pm_gbk.c (54%) create mode 100644 prism/enc/pm_shift_jis.c rename yarp/enc/yp_tables.c => prism/enc/pm_tables.c (82%) rename yarp/enc/yp_unicode.c => prism/enc/pm_unicode.c (95%) create mode 100644 prism/enc/pm_windows_31j.c rename {yarp => prism}/extension.c (61%) create mode 100644 prism/extension.h create mode 100644 prism/node.h create mode 100644 prism/pack.c create mode 100644 prism/pack.h rename {yarp => prism}/parser.h (65%) rename yarp/yarp.c => prism/prism.c (51%) create mode 100644 prism/prism.h rename yarp/yarp_compiler.c => prism/prism_compiler.c (59%) create mode 100644 prism/prism_init.c rename {yarp => prism}/regexp.c (64%) create mode 100644 prism/regexp.h rename {yarp/templates/ext/yarp => prism/templates/ext/prism}/api_node.c.erb (57%) create mode 100644 prism/templates/include/prism/ast.h.erb create mode 100644 prism/templates/lib/prism/compiler.rb.erb create mode 100644 prism/templates/lib/prism/dispatcher.rb.erb create mode 100644 prism/templates/lib/prism/dsl.rb.erb rename yarp/templates/lib/yarp/mutation_visitor.rb.erb => prism/templates/lib/prism/mutation_compiler.rb.erb (66%) rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/node.rb.erb (54%) rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/serialize.rb.erb (84%) create mode 100644 prism/templates/lib/prism/visitor.rb.erb create mode 100644 prism/templates/src/node.c.erb create mode 100644 prism/templates/src/prettyprint.c.erb create mode 100644 prism/templates/src/serialize.c.erb rename {yarp => prism}/templates/src/token_type.c.erb (57%) rename {yarp => prism}/templates/template.rb (91%) rename {yarp => prism}/unescape.c (74%) create mode 100644 prism/unescape.h create mode 100644 prism/util/pm_buffer.c create mode 100644 prism/util/pm_buffer.h rename yarp/util/yp_char.c => prism/util/pm_char.c (65%) rename yarp/util/yp_char.h => prism/util/pm_char.h (74%) rename yarp/util/yp_constant_pool.c => prism/util/pm_constant_pool.c (61%) rename yarp/util/yp_constant_pool.h => prism/util/pm_constant_pool.h (61%) rename yarp/util/yp_list.c => prism/util/pm_list.c (59%) rename yarp/util/yp_list.h => prism/util/pm_list.h (61%) rename yarp/util/yp_memchr.c => prism/util/pm_memchr.c (74%) create mode 100644 prism/util/pm_memchr.h rename yarp/util/yp_newline_list.c => prism/util/pm_newline_list.c (74%) rename yarp/util/yp_newline_list.h => prism/util/pm_newline_list.h (77%) rename yarp/util/yp_state_stack.c => prism/util/pm_state_stack.c (53%) create mode 100644 prism/util/pm_state_stack.h rename yarp/util/yp_string.c => prism/util/pm_string.c (68%) rename yarp/util/yp_string.h => prism/util/pm_string.h (55%) create mode 100644 prism/util/pm_string_list.c create mode 100644 prism/util/pm_string_list.h rename yarp/util/yp_strncasecmp.c => prism/util/pm_strncasecmp.c (86%) rename yarp/util/yp_strpbrk.c => prism/util/pm_strpbrk.c (80%) rename yarp/util/yp_strpbrk.h => prism/util/pm_strpbrk.h (77%) create mode 100644 prism/version.h rename test/{yarp => prism}/bom_test.rb (92%) rename test/{yarp => prism}/comments_test.rb (97%) create mode 100644 test/prism/compiler_test.rb rename test/{yarp/desugar_visitor_test.rb => prism/desugar_compiler_test.rb} (95%) rename test/{yarp => prism}/dispatcher_test.rb (95%) rename test/{yarp => prism}/encoding_test.rb (81%) rename test/{yarp => prism}/errors_test.rb (99%) rename test/{yarp => prism}/fixtures/alias.txt (100%) rename test/{yarp => prism}/fixtures/arithmetic.txt (100%) rename test/{yarp => prism}/fixtures/arrays.txt (100%) rename test/{yarp => prism}/fixtures/begin_ensure.txt (100%) rename test/{yarp => prism}/fixtures/begin_rescue.txt (100%) rename test/{yarp => prism}/fixtures/blocks.txt (100%) rename test/{yarp => prism}/fixtures/boolean_operators.txt (100%) rename test/{yarp => prism}/fixtures/booleans.txt (100%) rename test/{yarp => prism}/fixtures/break.txt (100%) rename test/{yarp => prism}/fixtures/case.txt (100%) rename test/{yarp => prism}/fixtures/classes.txt (100%) rename test/{yarp => prism}/fixtures/comments.txt (100%) rename test/{yarp => prism}/fixtures/constants.txt (100%) rename test/{yarp => prism}/fixtures/dash_heredocs.txt (100%) rename test/{yarp => prism}/fixtures/defined.txt (100%) rename test/{yarp => prism}/fixtures/dos_endings.txt (100%) rename test/{yarp => prism}/fixtures/embdoc_no_newline_at_end.txt (100%) rename test/{yarp => prism}/fixtures/endless_methods.txt (100%) rename test/{yarp => prism}/fixtures/endless_range_in_conditional.txt (100%) rename test/{yarp => prism}/fixtures/for.txt (100%) rename test/{yarp => prism}/fixtures/global_variables.txt (100%) rename test/{yarp => prism}/fixtures/hashes.txt (100%) rename test/{yarp => prism}/fixtures/heredoc_with_escaped_newline_at_start.txt (100%) rename test/{yarp => prism}/fixtures/heredoc_with_trailing_newline.txt (100%) rename test/{yarp => prism}/fixtures/heredocs_nested.txt (100%) rename test/{yarp => prism}/fixtures/heredocs_with_ignored_newlines.txt (100%) rename test/{yarp => prism}/fixtures/heredocs_with_ignored_newlines_and_non_empty.txt (100%) rename test/{yarp => prism}/fixtures/if.txt (100%) rename test/{yarp => prism}/fixtures/indented_file_end.txt (100%) rename test/{yarp => prism}/fixtures/integer_operations.txt (100%) rename test/{yarp => prism}/fixtures/keyword_method_names.txt (100%) rename test/{yarp => prism}/fixtures/keywords.txt (100%) rename test/{yarp => prism}/fixtures/lambda.txt (100%) rename test/{yarp => prism}/fixtures/method_calls.txt (100%) rename test/{yarp => prism}/fixtures/methods.txt (100%) rename test/{yarp => prism}/fixtures/modules.txt (100%) rename test/{yarp => prism}/fixtures/newline_terminated.txt (100%) rename test/{yarp => prism}/fixtures/next.txt (100%) rename test/{yarp => prism}/fixtures/nils.txt (100%) rename test/{yarp => prism}/fixtures/non_alphanumeric_methods.txt (100%) rename test/{yarp => prism}/fixtures/not.txt (100%) rename test/{yarp => prism}/fixtures/numbers.txt (100%) rename test/{yarp => prism}/fixtures/patterns.txt (100%) rename test/{yarp => prism}/fixtures/procs.txt (100%) rename test/{yarp => prism}/fixtures/range_begin_open_exclusive.txt (100%) rename test/{yarp => prism}/fixtures/range_begin_open_inclusive.txt (100%) rename test/{yarp => prism}/fixtures/range_end_open_exclusive.txt (100%) rename test/{yarp => prism}/fixtures/range_end_open_inclusive.txt (100%) rename test/{yarp => prism}/fixtures/ranges.txt (100%) rename test/{yarp => prism}/fixtures/regex.txt (100%) rename test/{yarp => prism}/fixtures/rescue.txt (100%) rename test/{yarp => prism}/fixtures/return.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/BEGIN.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/README.rdoc (100%) rename test/{yarp => prism}/fixtures/seattlerb/TestRubyParserShared.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/__ENCODING__.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/alias_gvar_backref.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/alias_resword.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/and_multi.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/aref_args_assocs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/aref_args_lit_assocs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/args_kw_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/array_line_breaks.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/array_lits_trailing_calls.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/assoc__bare.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/assoc_label.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/attr_asgn_colon_id.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/attrasgn_array_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/attrasgn_array_lhs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/attrasgn_primary_dot_constant.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/backticks_interpolation_line.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bang_eq.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bdot2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bdot3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/begin_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/begin_rescue_else_ensure_bodies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/begin_rescue_else_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/begin_rescue_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg__bare.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_opt_arg_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_opt_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_optional.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_scope.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_scope2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_arg_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_kwargs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_no_kwargs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_opt1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_opt2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_opt2_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_args_opt3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_break.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_defn_call_block_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_dot_op2_brace_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_dot_op2_cmd_args_do_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_operation_colon.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_operation_dot.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_call_paren_call_block_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_command_operation_colon.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_command_operation_dot.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_decomp_anon_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_decomp_arg_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_decomp_arg_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_decomp_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_kw.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_kw__required.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_kwarg_lvar.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_kwarg_lvar_multiple.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_next.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_opt_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_opt_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_optarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_paren_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_reg_optarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_return.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_scope.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/block_splat_reg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug169.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug179.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug190.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug191.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug202.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug236.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug290.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_187.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_215.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_249.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_and.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_args__19.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_args_masgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_args_masgn2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_args_masgn_outer_parens__19.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_call_arglist_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_case_when_regexp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_cond_pct.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_hash_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_hash_args_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_hash_interp_array.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_masgn_right.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_not_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/bug_op_asgn_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_and.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_arg_assoc.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_arg_assoc_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_arg_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_args_assoc_quoted.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_args_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_args_command.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_array_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_array_block_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_array_lambda_block_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_array_lit_inline_hash.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_assoc.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_assoc_new.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_assoc_new_if_multiline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_bang_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_bang_squiggle.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_begin_call_block_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_block_arg_named.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_carat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_colon2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_colon_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_div.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_dot_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_env.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_eq3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_gt.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_leading_dots.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_leading_dots_comment.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_lt.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_lte.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_not.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_pipe.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_rshift.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_self_brackets.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_spaceship.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_stabby_do_end_with_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_stabby_with_braces_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_star.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_star2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_trailing_dots.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/call_unary_bang.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_31.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_37.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_42.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_42_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_47.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_67.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_86.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_86_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_array_pat_const.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_array_pat_const2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_array_pat_paren_assign.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_const.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_else.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_find.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_find_array.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat_assign.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat_paren_assign.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat_paren_true.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat_rest.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_hash_pat_rest_solo.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_if_unless_post_mod.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_multiple.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/case_in_or.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/class_comments.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/cond_unary_minus.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/const_2_op_asgn_or2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/const_3_op_asgn_or.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/const_op_asgn_and1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/const_op_asgn_and2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/const_op_asgn_or.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dasgn_icky2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defined_eh_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_arg_asplat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_arg_forward_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_args_forward_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_comments.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_endless_command.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_endless_command_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_forward_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_forward_args__no_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_env.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_kwarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_kwsplat_anon.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_lvar.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_no_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_kwarg_val.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_no_kwargs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_oneliner.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_oneliner_eq2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_oneliner_noargs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_oneliner_noargs_parentheses.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_oneliner_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_opt_last_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_opt_reg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_opt_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_powarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_reg_opt_reg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defn_unary_not.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defns_reserved.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_as_arg_with_do_block_inside.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_comments.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_endless_command.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_endless_command_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_kwarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_oneliner.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_oneliner_eq2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/defs_oneliner_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult0_.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult1_line_numbers.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult1_line_numbers2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult2_.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3_.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3_3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3_4.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3_5.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__10.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__11.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__12.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__6.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__7.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__8.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult3__9.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult4__leading_dots.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult4__leading_dots2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult6_.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult6__7.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult6__8.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/difficult7_.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/do_bug.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/do_lambda.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dot2_nil__26.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dot3_nil__26.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dstr_evstr.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dstr_evstr_empty_end.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dstr_lex_state.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dstr_str.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dsym_esc_to_sym.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/dsym_to_sym.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/eq_begin_line_numbers.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/eq_begin_why_wont_people_use_their_spacebar.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/evstr_evstr.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/evstr_str.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/expr_not_bang.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/f_kw.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/f_kw__required.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/flip2_env_lvar.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/float_with_if_modifier.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc__backslash_dos_format.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_backslash_nl.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_bad_hex_escape.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_bad_oct_escape.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_comma_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_lineno.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_nested.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_blank_line_plus_interpolation.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_blank_lines.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_empty.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_interp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_no_indent.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_tabs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_tabs_extra.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_squiggly_visually_blank_lines.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_trailing_slash_continued_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_unicode.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_carriage_return_escapes.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_carriage_return_escapes_windows.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_extra_carriage_horrible_mix.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_extra_carriage_returns.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_extra_carriage_returns_windows.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_interpolation_and_carriage_return_escapes.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_interpolation_and_carriage_return_escapes_windows.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_not_global_interpolation.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_only_carriage_returns.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/heredoc_with_only_carriage_returns_windows.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/if_elsif.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/if_symbol.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/in_expr_no_case.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/index_0.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/index_0_opasgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/integer_with_if_modifier.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/interpolated_symbol_array_line_breaks.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/interpolated_word_array_line_breaks.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_10_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_10_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_11_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_11_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_2__19.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_4.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_5.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_6.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_7_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_7_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_8_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_8_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_9_1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_args_9_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_kwarg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/iter_kwarg_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/label_vs_string.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lambda_do_vs_brace.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_arg_rescue_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_call_bracket_rescue_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_call_nobracket_rescue_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_command.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_env.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_ivar_env.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_lasgn_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/lasgn_middle_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/magic_encoding_comment.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_anon_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_arg_colon_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_arg_ident.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_arg_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_colon2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_colon3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_double_paren.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_lhs_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_paren.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_splat_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_splat_arg_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_star.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/masgn_var_star_var.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/messy_op_asgn_lineno.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/method_call_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/method_call_trailing_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_back_anonsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_back_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_front_anonsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_front_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_keyword.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_mid_anonsplat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_mid_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/mlhs_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/module_comments.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/multiline_hash_declaration.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/non_interpolated_symbol_array_line_breaks.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/non_interpolated_word_array_line_breaks.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_dot_ident_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_index_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_primary_colon_const_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_primary_colon_identifier1.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_primary_colon_identifier_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/op_asgn_val_dot_ident_command_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_def_special_name.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_if_not_canonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_if_not_noncanonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_block_inline_comment.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_block_inline_comment_leading_newlines.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_block_inline_multiline_comment.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_call_ivar_arg_no_parens_line_break.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_call_ivar_line_break_paren.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_call_no_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_defn_complex.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_defn_no_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_defn_no_parens_args.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dot2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dot2_open.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dot3.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dot3_open.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dstr_escaped_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_dstr_soft_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_evstr_after_break.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_hash_lit.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_heredoc.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_heredoc_evstr.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_heredoc_hardnewline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_heredoc_regexp_chars.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_iter_call_no_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_iter_call_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_multiline_str.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_multiline_str_literal_n.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_newlines.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_op_asgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_postexe.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_preexe.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_rescue.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_return.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_str_with_newline_escape.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_to_ary.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_line_trailing_newlines.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_opt_call_args_assocs_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_opt_call_args_lit_comma.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_019.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_044.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_051.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_058.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_058_2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_069.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_pattern_076.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_until_not_canonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_until_not_noncanonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_while_not_canonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/parse_while_not_noncanonical.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pctW_lineno.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pct_Q_backslash_nl.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pct_nl.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pct_w_heredoc_interp_nested.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pipe_semicolon.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/pipe_space.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qWords_space.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qsymbols.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qsymbols_empty.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qsymbols_empty_space.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qsymbols_interp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/quoted_symbol_hash_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/quoted_symbol_keys.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qw_escape.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qw_escape_term.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/qwords_empty.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/read_escape_unicode_curlies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/read_escape_unicode_h4.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/regexp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/regexp_esc_C_slash.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/regexp_esc_u.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/regexp_escape_extended.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/regexp_unicode_curlies.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/required_kwarg_no_value.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_do_end_ensure_result.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_do_end_no_raise.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_do_end_raised.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_do_end_rescued.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_in_block.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rescue_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/return_call_assocs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/rhs_asgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/ruby21_numbers.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_attrasgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_attrasgn_constant.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call_after_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call_dot_parens.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call_operator.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_call_rhs_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_calls.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_op_asgn.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/safe_op_asgn2.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/slashy_newlines_within_string.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_arg_no_paren.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_arg_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_block_iter_call.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_block_iter_call_no_target_with_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_block_kw.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_block_kw__required.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/stabby_proc_scope.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_backslashes.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_double_double_escaped_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_double_escaped_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_double_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_evstr.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_evstr_escape.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_heredoc_interp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_interp_ternary_or_label.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_lit_concat_bad_encodings.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_newline_hash_line_number.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_pct_Q_nested.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_pct_nested_nested.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_pct_q.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_single_double_escaped_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_single_escaped_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_single_newline.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_str.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/str_str_str.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/super_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbol_empty.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbol_list.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbols.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbols_empty.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbols_empty_space.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/symbols_interp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/thingy.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/uminus_float.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/unary_minus.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/unary_plus.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/unary_plus_on_literal.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/unary_tilde.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/utf8_bom.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/when_splat.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/words_interp.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/yield_arg.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/yield_call_assocs.txt (100%) rename test/{yarp => prism}/fixtures/seattlerb/yield_empty_parens.txt (100%) rename test/{yarp => prism}/fixtures/single_quote_heredocs.txt (100%) rename test/{yarp => prism}/fixtures/spanning_heredoc.txt (77%) rename test/{yarp => prism}/fixtures/strings.txt (100%) rename test/{yarp => prism}/fixtures/super.txt (100%) rename test/{yarp => prism}/fixtures/symbols.txt (100%) rename test/{yarp => prism}/fixtures/ternary_operator.txt (100%) rename test/{yarp => prism}/fixtures/tilde_heredocs.txt (100%) rename test/{yarp => prism}/fixtures/undef.txt (100%) rename test/{yarp => prism}/fixtures/unescaping.txt (100%) rename test/{yarp => prism}/fixtures/unless.txt (100%) rename test/{yarp => prism}/fixtures/unparser/LICENSE (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/alias.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/assignment.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/block.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/case.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/class.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/control.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/def.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/defined.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/defs.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/dstr.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/empty.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/empty_begin.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/flipflop.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/for.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/hookexe.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/if.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/kwbegin.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/lambda.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/literal.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/module.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/opasgn.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/pattern.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/pragma.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/range.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/rescue.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/send.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/since/27.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/since/30.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/since/31.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/since/32.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/singletons.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/super.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/unary.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/undef.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/variables.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/while.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/literal/yield.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/and.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/block.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/def.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/dstr.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/kwbegin.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/literal.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/send.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/undef.txt (100%) rename test/{yarp => prism}/fixtures/unparser/corpus/semantic/while.txt (100%) rename test/{yarp => prism}/fixtures/until.txt (100%) rename test/{yarp => prism}/fixtures/variables.txt (100%) rename test/{yarp => prism}/fixtures/while.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/LICENSE (100%) rename test/{yarp => prism}/fixtures/whitequark/__ENCODING__.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/__ENCODING___legacy_.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/alias.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/alias_gvar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ambiuous_quoted_label_in_ternary_operator.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/and.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/and_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/and_or_masgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/anonymous_blockarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/arg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/arg_duplicate_ignored.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/arg_label.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/arg_scope.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_args_assocs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_args_assocs_comma.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_args_comma.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_args_star.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_assocs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_assocs_comma.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_assocs_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_block_pass.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/args_star.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_assocs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_splat.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_symbols.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_symbols_empty.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_symbols_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_words.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_words_empty.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/array_words_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/asgn_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/asgn_mrhs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/back_ref.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bang.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bang_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/begin_cmdarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/beginless_erange_after_newline.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/beginless_irange_after_newline.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/beginless_range.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/blockarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/blockargs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/break.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/break_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_435.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_447.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_452.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_466.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_473.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_480.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_481.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_ascii_8bit_in_literal.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_cmd_string_lookahead.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_cmdarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_def_no_paren_eql_begin.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_do_block_in_call_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_do_block_in_cmdarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_do_block_in_hash_brace.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_heredoc_do.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_interp_single.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_lambda_leakage.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_regex_verification.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_rescue_empty_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/bug_while_not_parens_do.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/case_cond.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/case_cond_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/case_expr.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/case_expr_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/casgn_scoped.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/casgn_toplevel.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/casgn_unscoped.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/character.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/class.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/class_definition_in_while_cond.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/class_super.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/class_super_label.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/comments_before_leading_dot__27.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/complex.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cond_begin.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cond_begin_masgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cond_eflipflop.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cond_iflipflop.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cond_match_current_line.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/const_op_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/const_scoped.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/const_toplevel.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/const_unscoped.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cpath.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cvar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/cvasgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/dedenting_heredoc.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/dedenting_interpolating_heredoc_fake_line_continuation.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/dedenting_non_interpolating_heredoc_line_continuation.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/def.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/defined.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/defs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/empty_stmt.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_comparison_method.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_method.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_method_command_syntax.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_method_forwarded_args_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_method_with_rescue_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/endless_method_without_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ensure.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ensure_empty.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/false.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/float.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/for.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/for_mlhs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forward_arg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forward_arg_with_open_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forward_args_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forwarded_argument_with_kwrestarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forwarded_argument_with_restarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forwarded_kwrestarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forwarded_kwrestarg_with_additional_kwarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/forwarded_restarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/gvar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/gvasgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_empty.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_hashrocket.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_kwsplat.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_label.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_label_end.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/hash_pair_value_omission.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/heredoc.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_elsif.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_masgn__24.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_nl_then.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/if_while_after_class__since_32.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/int.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/int___LINE__.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/interp_digit_var.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ivar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ivasgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/keyword_argument_omission.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwbegin_compstmt.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwnilarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwoptarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwoptarg_with_kwrestarg_and_forwarded_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwrestarg_named.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/kwrestarg_unnamed.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/lbrace_arg_after_command_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/lparenarg_after_lvar__since_25.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/lvar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/lvar_injecting_match.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/lvasgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn_attr.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn_const.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn_nested.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/masgn_splat.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/method_definition_in_while_cond.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/module.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/multiple_pattern_matches.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/newline_in_hash_argument.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/next.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/next_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/nil.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/nil_expression.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/non_lvar_injecting_match.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/not.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/not_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/not_masgn__24.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/nth_ref.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/numbered_args_after_27.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/numparam_outside_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/op_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/op_asgn_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/op_asgn_index.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/op_asgn_index_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/optarg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/or.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/or_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_272.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_490.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_507.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_518.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_525.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_604.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_640.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_645.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_bug_830.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_drops_truncated_parts_of_squiggly_heredoc.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/parser_slash_slash_n_escaping_in_literals.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/pattern_matching__FILE__LINE_literals.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/pattern_matching_blank_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/pattern_matching_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/pattern_matching_single_line.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/pattern_matching_single_line_allowed_omission_of_parentheses.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/postexe.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/preexe.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/procarg0.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/range_exclusive.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/range_inclusive.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rational.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/redo.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/regex_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/regex_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/resbody_list.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/resbody_list_mrhs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/resbody_list_var.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/resbody_var.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_else_ensure.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_ensure.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_in_lambda_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_mod_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_mod_masgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_mod_op_assign.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/rescue_without_begin_end.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/restarg_named.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/restarg_unnamed.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/retry.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/return.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/return_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_10279.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_10653.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11107.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11380.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11873.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11873_a.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11873_b.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11989.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_11990.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_12073.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_12402.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_12669.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_12686.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_13547.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_14690.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_15789.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ruby_bug_9669.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/sclass.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/self.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_attr_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_attr_asgn_conditional.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_binary_op.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_block_chain_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_block_conditional.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_call.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_conditional.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_index.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_index_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_index_asgn_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_index_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_index_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_lambda.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_lambda_args.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_lambda_args_noparen.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_lambda_args_shadow.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_lambda_legacy.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_op_asgn_conditional.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_plain_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_self.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_self_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/send_unary_op.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/slash_newline_in_heredocs.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_arg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_arg_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_arg_call.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_arg_newline.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/space_args_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/string___FILE__.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/string_concat.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/string_dvar.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/string_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/string_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/super.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/super_block.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/symbol_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/symbol_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ternary.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/ternary_ambiguous_symbol.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/trailing_forward_arg.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/true.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/unary_num_pow_precedence.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/undef.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/unless.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/unless_else.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/unless_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/until.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/until_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/until_post.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/var_and_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/var_op_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/var_op_asgn_cmd.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/var_or_asgn.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/when_multi.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/when_splat.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/when_then.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/while.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/while_mod.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/while_post.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/xstring_interp.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/xstring_plain.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/yield.txt (100%) rename test/{yarp => prism}/fixtures/whitequark/zsuper.txt (100%) rename test/{yarp => prism}/fixtures/xstring.txt (100%) rename test/{yarp => prism}/fixtures/yield.txt (100%) rename test/{yarp => prism}/fuzzer_test.rb (96%) rename test/{yarp => prism}/heredoc_dedent_test.rb (88%) rename test/{yarp/compiler_test.rb => prism/iseq_test.rb} (53%) rename test/{yarp => prism}/library_symbols_test.rb (76%) rename test/{yarp => prism}/locals_test.rb (98%) rename test/{yarp => prism}/location_test.rb (99%) rename test/{yarp => prism}/memsize_test.rb (86%) rename test/{yarp => prism}/newline_test.rb (95%) rename test/{yarp => prism}/parse_serialize_test.rb (85%) rename test/{yarp => prism}/parse_test.rb (86%) rename test/{yarp => prism}/pattern_test.rb (92%) rename test/{yarp => prism}/regexp_test.rb (98%) rename test/{yarp => prism}/ripper_compat_test.rb (96%) rename test/{yarp => prism}/ruby_api_test.rb (79%) rename test/{yarp => prism}/snapshots/alias.txt (100%) rename test/{yarp => prism}/snapshots/arithmetic.txt (100%) rename test/{yarp => prism}/snapshots/arrays.txt (100%) rename test/{yarp => prism}/snapshots/begin_ensure.txt (100%) rename test/{yarp => prism}/snapshots/begin_rescue.txt (100%) rename test/{yarp => prism}/snapshots/blocks.txt (100%) rename test/{yarp => prism}/snapshots/boolean_operators.txt (100%) rename test/{yarp => prism}/snapshots/booleans.txt (100%) rename test/{yarp => prism}/snapshots/break.txt (100%) rename test/{yarp => prism}/snapshots/case.txt (100%) rename test/{yarp => prism}/snapshots/classes.txt (100%) rename test/{yarp => prism}/snapshots/comments.txt (100%) rename test/{yarp => prism}/snapshots/constants.txt (100%) rename test/{yarp => prism}/snapshots/dash_heredocs.txt (100%) rename test/{yarp => prism}/snapshots/defined.txt (100%) rename test/{yarp => prism}/snapshots/dos_endings.txt (100%) rename test/{yarp => prism}/snapshots/embdoc_no_newline_at_end.txt (100%) rename test/{yarp => prism}/snapshots/endless_methods.txt (100%) rename test/{yarp => prism}/snapshots/endless_range_in_conditional.txt (100%) rename test/{yarp => prism}/snapshots/for.txt (100%) rename test/{yarp => prism}/snapshots/global_variables.txt (100%) rename test/{yarp => prism}/snapshots/hashes.txt (100%) rename test/{yarp => prism}/snapshots/heredoc_with_escaped_newline_at_start.txt (100%) rename test/{yarp => prism}/snapshots/heredoc_with_trailing_newline.txt (100%) rename test/{yarp => prism}/snapshots/heredocs_nested.txt (100%) rename test/{yarp => prism}/snapshots/heredocs_with_ignored_newlines.txt (100%) rename test/{yarp => prism}/snapshots/heredocs_with_ignored_newlines_and_non_empty.txt (100%) rename test/{yarp => prism}/snapshots/if.txt (100%) rename test/{yarp => prism}/snapshots/indented_file_end.txt (100%) rename test/{yarp => prism}/snapshots/integer_operations.txt (100%) rename test/{yarp => prism}/snapshots/keyword_method_names.txt (100%) rename test/{yarp => prism}/snapshots/keywords.txt (100%) rename test/{yarp => prism}/snapshots/lambda.txt (100%) rename test/{yarp => prism}/snapshots/method_calls.txt (100%) rename test/{yarp => prism}/snapshots/methods.txt (100%) rename test/{yarp => prism}/snapshots/modules.txt (100%) rename test/{yarp => prism}/snapshots/newline_terminated.txt (100%) rename test/{yarp => prism}/snapshots/next.txt (100%) rename test/{yarp => prism}/snapshots/nils.txt (100%) rename test/{yarp => prism}/snapshots/non_alphanumeric_methods.txt (100%) rename test/{yarp => prism}/snapshots/not.txt (100%) rename test/{yarp => prism}/snapshots/numbers.txt (100%) rename test/{yarp => prism}/snapshots/patterns.txt (100%) rename test/{yarp => prism}/snapshots/procs.txt (100%) rename test/{yarp => prism}/snapshots/range_begin_open_exclusive.txt (100%) rename test/{yarp => prism}/snapshots/range_begin_open_inclusive.txt (100%) rename test/{yarp => prism}/snapshots/range_end_open_exclusive.txt (100%) rename test/{yarp => prism}/snapshots/range_end_open_inclusive.txt (100%) rename test/{yarp => prism}/snapshots/ranges.txt (100%) rename test/{yarp => prism}/snapshots/regex.txt (100%) rename test/{yarp => prism}/snapshots/rescue.txt (100%) rename test/{yarp => prism}/snapshots/return.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/BEGIN.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/TestRubyParserShared.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/__ENCODING__.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/alias_gvar_backref.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/alias_resword.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/and_multi.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/aref_args_assocs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/aref_args_lit_assocs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/args_kw_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/array_line_breaks.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/array_lits_trailing_calls.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/assoc__bare.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/assoc_label.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/attr_asgn_colon_id.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/attrasgn_array_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/attrasgn_array_lhs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/attrasgn_primary_dot_constant.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/backticks_interpolation_line.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bang_eq.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bdot2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bdot3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/begin_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/begin_rescue_else_ensure_bodies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/begin_rescue_else_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/begin_rescue_ensure_no_bodies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg__bare.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_opt_arg_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_opt_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_optional.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_scope.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_scope2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_arg_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_kwargs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_no_kwargs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_opt1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_opt2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_opt2_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_args_opt3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_break.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_defn_call_block_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_dot_op2_brace_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_dot_op2_cmd_args_do_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_operation_colon.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_operation_dot.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_call_paren_call_block_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_command_operation_colon.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_command_operation_dot.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_decomp_anon_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_decomp_arg_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_decomp_arg_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_decomp_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_kw.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_kw__required.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_kwarg_lvar.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_kwarg_lvar_multiple.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_next.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_opt_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_opt_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_optarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_paren_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_reg_optarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_return.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_scope.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/block_splat_reg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug169.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug179.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug190.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug191.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug202.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug236.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug290.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_187.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_215.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_249.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_and.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_args__19.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_args_masgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_args_masgn2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_args_masgn_outer_parens__19.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_call_arglist_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_case_when_regexp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_cond_pct.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_hash_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_hash_args_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_hash_interp_array.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_masgn_right.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_not_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/bug_op_asgn_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_and.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_arg_assoc.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_arg_assoc_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_arg_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_args_assoc_quoted.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_args_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_args_command.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_array_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_array_block_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_array_lambda_block_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_array_lit_inline_hash.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_assoc.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_assoc_new.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_assoc_new_if_multiline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_bang_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_bang_squiggle.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_begin_call_block_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_block_arg_named.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_carat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_colon2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_colon_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_div.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_dot_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_env.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_eq3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_gt.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_leading_dots.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_leading_dots_comment.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_lt.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_lte.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_not.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_pipe.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_rshift.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_self_brackets.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_spaceship.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_stabby_do_end_with_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_stabby_with_braces_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_star.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_star2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_trailing_dots.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/call_unary_bang.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_31.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_37.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_42.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_42_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_47.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_67.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_86.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_86_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_array_pat_const.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_array_pat_const2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_array_pat_paren_assign.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_const.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_else.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_find.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_find_array.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat_assign.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat_paren_assign.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat_paren_true.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat_rest.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_hash_pat_rest_solo.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_if_unless_post_mod.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_multiple.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/case_in_or.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/class_comments.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/cond_unary_minus.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/const_2_op_asgn_or2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/const_3_op_asgn_or.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/const_op_asgn_and1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/const_op_asgn_and2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/const_op_asgn_or.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dasgn_icky2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defined_eh_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_arg_asplat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_arg_forward_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_args_forward_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_comments.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_endless_command.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_endless_command_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_forward_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_forward_args__no_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_env.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_kwarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_kwsplat_anon.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_lvar.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_no_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_kwarg_val.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_no_kwargs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_oneliner.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_oneliner_eq2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_oneliner_noargs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_oneliner_noargs_parentheses.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_oneliner_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_opt_last_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_opt_reg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_opt_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_powarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_reg_opt_reg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defn_unary_not.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defns_reserved.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_as_arg_with_do_block_inside.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_comments.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_endless_command.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_endless_command_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_kwarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_oneliner.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_oneliner_eq2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/defs_oneliner_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult0_.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult1_line_numbers.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult1_line_numbers2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult2_.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3_.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3_3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3_4.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3_5.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__10.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__11.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__12.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__6.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__7.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__8.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult3__9.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult4__leading_dots.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult4__leading_dots2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult6_.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult6__7.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult6__8.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/difficult7_.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/do_bug.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/do_lambda.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dot2_nil__26.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dot3_nil__26.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dstr_evstr.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dstr_evstr_empty_end.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dstr_lex_state.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dstr_str.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dsym_esc_to_sym.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/dsym_to_sym.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/eq_begin_line_numbers.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/eq_begin_why_wont_people_use_their_spacebar.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/evstr_evstr.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/evstr_str.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/expr_not_bang.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/f_kw.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/f_kw__required.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/flip2_env_lvar.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/float_with_if_modifier.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc__backslash_dos_format.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_backslash_nl.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_bad_hex_escape.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_bad_oct_escape.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_comma_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_lineno.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_nested.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_blank_line_plus_interpolation.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_blank_lines.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_empty.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_interp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_no_indent.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_tabs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_tabs_extra.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_squiggly_visually_blank_lines.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_trailing_slash_continued_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_unicode.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_carriage_return_escapes.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_carriage_return_escapes_windows.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_extra_carriage_horrible_mix.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_extra_carriage_returns.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_extra_carriage_returns_windows.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_interpolation_and_carriage_return_escapes.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_interpolation_and_carriage_return_escapes_windows.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_not_global_interpolation.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_only_carriage_returns.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/heredoc_with_only_carriage_returns_windows.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/if_elsif.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/if_symbol.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/in_expr_no_case.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/index_0.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/index_0_opasgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/integer_with_if_modifier.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/interpolated_symbol_array_line_breaks.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/interpolated_word_array_line_breaks.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_10_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_10_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_11_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_11_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_2__19.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_4.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_5.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_6.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_7_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_7_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_8_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_8_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_9_1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_args_9_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_kwarg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/iter_kwarg_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/label_vs_string.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lambda_do_vs_brace.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_arg_rescue_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_call_bracket_rescue_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_call_nobracket_rescue_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_command.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_env.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_ivar_env.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_lasgn_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/lasgn_middle_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/magic_encoding_comment.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_anon_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_arg_colon_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_arg_ident.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_arg_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_colon2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_colon3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_double_paren.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_lhs_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_paren.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_splat_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_splat_arg_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_star.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/masgn_var_star_var.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/messy_op_asgn_lineno.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/method_call_assoc_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/method_call_trailing_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_back_anonsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_back_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_front_anonsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_front_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_keyword.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_mid_anonsplat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_mid_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/mlhs_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/module_comments.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/multiline_hash_declaration.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/non_interpolated_symbol_array_line_breaks.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/non_interpolated_word_array_line_breaks.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_dot_ident_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_index_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_primary_colon_const_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_primary_colon_identifier1.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_primary_colon_identifier_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/op_asgn_val_dot_ident_command_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_def_special_name.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_if_not_canonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_if_not_noncanonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_block_inline_comment.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_block_inline_comment_leading_newlines.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_block_inline_multiline_comment.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_call_ivar_arg_no_parens_line_break.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_call_ivar_line_break_paren.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_call_no_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_defn_complex.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_defn_no_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_defn_no_parens_args.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dot2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dot2_open.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dot3.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dot3_open.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dstr_escaped_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_dstr_soft_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_evstr_after_break.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_hash_lit.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_heredoc.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_heredoc_evstr.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_heredoc_hardnewline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_heredoc_regexp_chars.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_iter_call_no_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_iter_call_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_multiline_str.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_multiline_str_literal_n.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_newlines.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_op_asgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_postexe.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_preexe.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_rescue.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_return.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_str_with_newline_escape.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_to_ary.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_line_trailing_newlines.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_opt_call_args_assocs_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_opt_call_args_lit_comma.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_019.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_044.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_051.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_058.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_058_2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_069.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_pattern_076.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_until_not_canonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_until_not_noncanonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_while_not_canonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/parse_while_not_noncanonical.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pctW_lineno.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pct_Q_backslash_nl.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pct_nl.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pct_w_heredoc_interp_nested.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pipe_semicolon.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/pipe_space.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qWords_space.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qsymbols.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qsymbols_empty.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qsymbols_empty_space.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qsymbols_interp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/quoted_symbol_hash_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/quoted_symbol_keys.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qw_escape.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qw_escape_term.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/qwords_empty.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/read_escape_unicode_curlies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/read_escape_unicode_h4.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/regexp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/regexp_esc_C_slash.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/regexp_esc_u.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/regexp_escape_extended.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/regexp_unicode_curlies.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/required_kwarg_no_value.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_do_end_ensure_result.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_do_end_no_raise.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_do_end_raised.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_do_end_rescued.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_in_block.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rescue_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/return_call_assocs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/rhs_asgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/ruby21_numbers.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_attrasgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_attrasgn_constant.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call_after_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call_dot_parens.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call_operator.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_call_rhs_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_calls.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_op_asgn.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/safe_op_asgn2.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/slashy_newlines_within_string.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_arg_no_paren.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_arg_opt_splat_arg_block_omfg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_block_iter_call.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_block_iter_call_no_target_with_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_block_kw.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_block_kw__required.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/stabby_proc_scope.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_backslashes.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_double_double_escaped_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_double_escaped_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_double_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_evstr.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_evstr_escape.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_heredoc_interp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_interp_ternary_or_label.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_lit_concat_bad_encodings.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_newline_hash_line_number.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_pct_Q_nested.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_pct_nested_nested.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_pct_q.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_single_double_escaped_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_single_escaped_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_single_newline.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_str.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/str_str_str.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/super_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbol_empty.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbol_list.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbols.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbols_empty.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbols_empty_space.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/symbols_interp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/thingy.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/uminus_float.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/unary_minus.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/unary_plus.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/unary_plus_on_literal.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/unary_tilde.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/utf8_bom.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/when_splat.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/words_interp.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/yield_arg.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/yield_call_assocs.txt (100%) rename test/{yarp => prism}/snapshots/seattlerb/yield_empty_parens.txt (100%) rename test/{yarp => prism}/snapshots/single_quote_heredocs.txt (100%) rename test/{yarp => prism}/snapshots/spanning_heredoc.txt (100%) rename test/{yarp => prism}/snapshots/strings.txt (100%) rename test/{yarp => prism}/snapshots/super.txt (100%) rename test/{yarp => prism}/snapshots/symbols.txt (100%) rename test/{yarp => prism}/snapshots/ternary_operator.txt (100%) rename test/{yarp => prism}/snapshots/tilde_heredocs.txt (100%) rename test/{yarp => prism}/snapshots/undef.txt (100%) rename test/{yarp => prism}/snapshots/unescaping.txt (100%) rename test/{yarp => prism}/snapshots/unless.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/alias.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/assignment.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/block.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/case.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/class.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/control.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/def.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/defined.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/defs.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/dstr.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/empty.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/empty_begin.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/flipflop.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/for.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/hookexe.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/if.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/kwbegin.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/lambda.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/literal.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/module.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/opasgn.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/pattern.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/pragma.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/range.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/rescue.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/send.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/since/27.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/since/30.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/since/31.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/since/32.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/singletons.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/super.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/unary.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/undef.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/variables.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/while.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/literal/yield.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/and.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/block.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/def.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/dstr.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/kwbegin.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/literal.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/send.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/undef.txt (100%) rename test/{yarp => prism}/snapshots/unparser/corpus/semantic/while.txt (100%) rename test/{yarp => prism}/snapshots/until.txt (100%) rename test/{yarp => prism}/snapshots/variables.txt (100%) rename test/{yarp => prism}/snapshots/while.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/__ENCODING__.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/__ENCODING___legacy_.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/alias.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/alias_gvar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ambiuous_quoted_label_in_ternary_operator.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/and.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/and_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/and_or_masgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/anonymous_blockarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/arg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/arg_duplicate_ignored.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/arg_label.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/arg_scope.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_args_assocs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_args_assocs_comma.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_args_comma.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_args_star.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_assocs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_assocs_comma.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_assocs_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_block_pass.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/args_star.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_assocs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_splat.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_symbols.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_symbols_empty.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_symbols_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_words.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_words_empty.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/array_words_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/asgn_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/asgn_mrhs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/back_ref.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bang.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bang_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/begin_cmdarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/beginless_erange_after_newline.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/beginless_irange_after_newline.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/beginless_range.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/blockarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/blockargs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/break.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/break_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_435.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_447.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_452.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_466.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_473.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_480.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_481.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_ascii_8bit_in_literal.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_cmd_string_lookahead.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_cmdarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_def_no_paren_eql_begin.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_do_block_in_call_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_do_block_in_cmdarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_do_block_in_hash_brace.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_heredoc_do.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_interp_single.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_lambda_leakage.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_regex_verification.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_rescue_empty_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/bug_while_not_parens_do.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/case_cond.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/case_cond_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/case_expr.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/case_expr_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/casgn_scoped.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/casgn_toplevel.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/casgn_unscoped.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/character.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/class.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/class_definition_in_while_cond.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/class_super.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/class_super_label.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/comments_before_leading_dot__27.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/complex.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cond_begin.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cond_begin_masgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cond_eflipflop.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cond_iflipflop.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cond_match_current_line.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/const_op_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/const_scoped.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/const_toplevel.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/const_unscoped.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cpath.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cvar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/cvasgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/dedenting_heredoc.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/dedenting_interpolating_heredoc_fake_line_continuation.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/dedenting_non_interpolating_heredoc_line_continuation.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/def.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/defined.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/defs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/empty_stmt.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_comparison_method.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_method.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_method_command_syntax.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_method_forwarded_args_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_method_with_rescue_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/endless_method_without_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ensure.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ensure_empty.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/false.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/float.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/for.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/for_mlhs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forward_arg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forward_arg_with_open_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forward_args_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forwarded_argument_with_kwrestarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forwarded_argument_with_restarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forwarded_kwrestarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forwarded_kwrestarg_with_additional_kwarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/forwarded_restarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/gvar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/gvasgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_empty.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_hashrocket.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_kwsplat.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_label.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_label_end.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/hash_pair_value_omission.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/heredoc.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_elsif.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_masgn__24.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_nl_then.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/if_while_after_class__since_32.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/int.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/int___LINE__.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/interp_digit_var.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ivar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ivasgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/keyword_argument_omission.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwbegin_compstmt.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwnilarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwoptarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwoptarg_with_kwrestarg_and_forwarded_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwrestarg_named.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/kwrestarg_unnamed.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/lbrace_arg_after_command_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/lparenarg_after_lvar__since_25.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/lvar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/lvar_injecting_match.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/lvasgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn_attr.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn_const.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn_nested.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/masgn_splat.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/method_definition_in_while_cond.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/module.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/multiple_pattern_matches.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/newline_in_hash_argument.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/next.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/next_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/nil.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/nil_expression.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/non_lvar_injecting_match.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/not.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/not_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/not_masgn__24.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/nth_ref.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/numbered_args_after_27.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/numparam_outside_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/op_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/op_asgn_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/op_asgn_index.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/op_asgn_index_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/optarg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/or.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/or_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_272.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_490.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_507.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_518.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_525.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_604.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_640.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_645.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_bug_830.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_drops_truncated_parts_of_squiggly_heredoc.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/parser_slash_slash_n_escaping_in_literals.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/pattern_matching__FILE__LINE_literals.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/pattern_matching_blank_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/pattern_matching_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/pattern_matching_single_line.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/pattern_matching_single_line_allowed_omission_of_parentheses.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/postexe.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/preexe.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/procarg0.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/range_exclusive.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/range_inclusive.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rational.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/redo.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/regex_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/regex_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/resbody_list.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/resbody_list_mrhs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/resbody_list_var.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/resbody_var.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_else_ensure.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_ensure.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_in_lambda_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_mod_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_mod_masgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_mod_op_assign.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/rescue_without_begin_end.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/restarg_named.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/restarg_unnamed.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/retry.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/return.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/return_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_10279.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_10653.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11107.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11380.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11873.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11873_a.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11873_b.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11989.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_11990.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_12073.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_12402.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_12669.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_12686.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_13547.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_14690.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_15789.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ruby_bug_9669.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/sclass.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/self.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_attr_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_attr_asgn_conditional.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_binary_op.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_block_chain_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_block_conditional.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_call.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_conditional.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_index.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_index_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_index_asgn_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_index_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_index_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_lambda.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_lambda_args.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_lambda_args_noparen.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_lambda_args_shadow.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_lambda_legacy.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_op_asgn_conditional.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_plain_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_self.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_self_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/send_unary_op.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/slash_newline_in_heredocs.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_arg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_arg_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_arg_call.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_arg_newline.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/space_args_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/string___FILE__.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/string_concat.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/string_dvar.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/string_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/string_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/super.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/super_block.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/symbol_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/symbol_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ternary.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/ternary_ambiguous_symbol.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/trailing_forward_arg.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/true.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/unary_num_pow_precedence.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/undef.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/unless.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/unless_else.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/unless_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/until.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/until_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/until_post.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/var_and_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/var_op_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/var_op_asgn_cmd.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/var_or_asgn.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/when_multi.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/when_splat.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/when_then.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/while.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/while_mod.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/while_post.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/xstring_interp.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/xstring_plain.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/yield.txt (100%) rename test/{yarp => prism}/snapshots/whitequark/zsuper.txt (100%) rename test/{yarp => prism}/snapshots/xstring.txt (100%) rename test/{yarp => prism}/snapshots/yield.txt (100%) rename test/{yarp => prism}/test_helper.rb (96%) rename test/{yarp => prism}/unescape_test.rb (98%) rename test/{yarp => prism}/version_test.rb (92%) delete mode 100644 yarp/defines.h delete mode 100644 yarp/diagnostic.c delete mode 100644 yarp/diagnostic.h delete mode 100644 yarp/enc/yp_big5.c delete mode 100644 yarp/enc/yp_euc_jp.c delete mode 100644 yarp/enc/yp_shift_jis.c delete mode 100644 yarp/enc/yp_windows_31j.c delete mode 100644 yarp/extension.h delete mode 100644 yarp/node.h delete mode 100644 yarp/pack.c delete mode 100644 yarp/pack.h delete mode 100644 yarp/regexp.h delete mode 100644 yarp/templates/include/yarp/ast.h.erb delete mode 100644 yarp/templates/src/node.c.erb delete mode 100644 yarp/templates/src/prettyprint.c.erb delete mode 100644 yarp/templates/src/serialize.c.erb delete mode 100644 yarp/unescape.h delete mode 100644 yarp/util/yp_buffer.c delete mode 100644 yarp/util/yp_buffer.h delete mode 100644 yarp/util/yp_memchr.h delete mode 100644 yarp/util/yp_state_stack.h delete mode 100644 yarp/util/yp_string_list.c delete mode 100644 yarp/util/yp_string_list.h delete mode 100644 yarp/version.h delete mode 100644 yarp/yarp.h delete mode 100644 yarp/yarp_init.c Latest commit hash = e9bc51966b $$$[end] "make update-src -j4" exit with 0. $$$[beg] make after-update -j4 sed 's/{\$([^(){}]*)[^{}]*}//g' /tmp/ruby/src/trunk-repeat50/common.mk > uncommon.mk generating node_name.inc /tmp/ruby/src/trunk-repeat50/revision.h updated generating parse.c generating /tmp/ruby/src/trunk-repeat50/ext/ripper/ripper.c make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' generating x86_64-linux-fake.rb extracting ripper.y from ../../parse.y x86_64-linux-fake.rb updated generating eventids1.c from ../../parse.y generating eventids1.h from ../../parse.y compiling compiler ripper.y generating ripper_init.c from ./ripper_init.c.tmpl /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp rbconfig.rb unchanged generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' generating /tmp/ruby/src/trunk-repeat50/ext/ripper/ripper_init.c make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' generating /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids1.h make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' generating /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids1.c make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' generating /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids2table.c make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' Downloading bundled gem net-smtp-0.4.0... Downloading bundled gem rbs-3.2.2... Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 Extracting bundle gem rbs-3.2.2... Extracting bundle gem net-smtp-0.4.0... Unpacked gems/net-smtp-0.4.0.gem From https://github.com/ruby/debug * branch 927587afb6aac69b358b86a01f602d207053e8d2 -> FETCH_HEAD HEAD is now at 927587a Stop assuming Integer#times is written in C echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged Unpacked gems/rbs-3.2.2.gem $$$[end] "make after-update -j4" exit with 0. $$$[beg] make miniruby -j4 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. compiling /tmp/ruby/src/trunk-repeat50/miniinit.c compiling /tmp/ruby/src/trunk-repeat50/array.c compiling /tmp/ruby/src/trunk-repeat50/ast.c compiling /tmp/ruby/src/trunk-repeat50/bignum.c compiling /tmp/ruby/src/trunk-repeat50/class.c compiling /tmp/ruby/src/trunk-repeat50/compile.c compiling /tmp/ruby/src/trunk-repeat50/complex.c compiling /tmp/ruby/src/trunk-repeat50/cont.c compiling /tmp/ruby/src/trunk-repeat50/debug.c compiling /tmp/ruby/src/trunk-repeat50/dir.c compiling /tmp/ruby/src/trunk-repeat50/enumerator.c compiling /tmp/ruby/src/trunk-repeat50/error.c compiling /tmp/ruby/src/trunk-repeat50/eval.c compiling /tmp/ruby/src/trunk-repeat50/gc.c compiling /tmp/ruby/src/trunk-repeat50/hash.c compiling /tmp/ruby/src/trunk-repeat50/inits.c compiling /tmp/ruby/src/trunk-repeat50/io.c compiling /tmp/ruby/src/trunk-repeat50/iseq.c compiling /tmp/ruby/src/trunk-repeat50/load.c compiling /tmp/ruby/src/trunk-repeat50/marshal.c compiling /tmp/ruby/src/trunk-repeat50/memory_view.c compiling /tmp/ruby/src/trunk-repeat50/rjit.c compiling /tmp/ruby/src/trunk-repeat50/rjit_c.c compiling /tmp/ruby/src/trunk-repeat50/node.c compiling /tmp/ruby/src/trunk-repeat50/node_dump.c compiling /tmp/ruby/src/trunk-repeat50/numeric.c compiling /tmp/ruby/src/trunk-repeat50/object.c compiling /tmp/ruby/src/trunk-repeat50/pack.c compiling parse.c compiling /tmp/ruby/src/trunk-repeat50/proc.c compiling /tmp/ruby/src/trunk-repeat50/process.c compiling /tmp/ruby/src/trunk-repeat50/ractor.c compiling /tmp/ruby/src/trunk-repeat50/random.c compiling /tmp/ruby/src/trunk-repeat50/rational.c compiling /tmp/ruby/src/trunk-repeat50/re.c compiling /tmp/ruby/src/trunk-repeat50/ruby.c compiling /tmp/ruby/src/trunk-repeat50/ruby_parser.c compiling /tmp/ruby/src/trunk-repeat50/scheduler.c compiling /tmp/ruby/src/trunk-repeat50/shape.c compiling /tmp/ruby/src/trunk-repeat50/signal.c compiling /tmp/ruby/src/trunk-repeat50/string.c compiling /tmp/ruby/src/trunk-repeat50/struct.c compiling /tmp/ruby/src/trunk-repeat50/symbol.c compiling /tmp/ruby/src/trunk-repeat50/thread.c compiling /tmp/ruby/src/trunk-repeat50/time.c compiling /tmp/ruby/src/trunk-repeat50/variable.c compiling /tmp/ruby/src/trunk-repeat50/version.c compiling /tmp/ruby/src/trunk-repeat50/vm.c compiling /tmp/ruby/src/trunk-repeat50/vm_backtrace.c compiling /tmp/ruby/src/trunk-repeat50/vm_dump.c compiling /tmp/ruby/src/trunk-repeat50/vm_sync.c compiling /tmp/ruby/src/trunk-repeat50/vm_trace.c compiling /tmp/ruby/src/trunk-repeat50/weakmap.c compiling /tmp/ruby/src/trunk-repeat50/yjit.c compiling prism/api_node.c compiling /tmp/ruby/src/trunk-repeat50/prism/api_pack.c compiling /tmp/ruby/src/trunk-repeat50/prism/diagnostic.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_big5.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_euc_jp.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_gbk.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_shift_jis.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_tables.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_unicode.c compiling /tmp/ruby/src/trunk-repeat50/prism/enc/pm_windows_31j.c compiling /tmp/ruby/src/trunk-repeat50/prism/extension.c compiling prism/node.c compiling /tmp/ruby/src/trunk-repeat50/prism/pack.c compiling prism/prettyprint.c compiling /tmp/ruby/src/trunk-repeat50/prism/regexp.c compiling prism/serialize.c compiling prism/token_type.c compiling /tmp/ruby/src/trunk-repeat50/prism/unescape.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_buffer.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_char.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_constant_pool.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_list.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_memchr.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_newline_list.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_state_stack.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_string.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_string_list.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_strncasecmp.c compiling /tmp/ruby/src/trunk-repeat50/prism/util/pm_strpbrk.c compiling /tmp/ruby/src/trunk-repeat50/prism/prism.c compiling /tmp/ruby/src/trunk-repeat50/prism/prism_init.c linking miniruby $$$[end] "make miniruby -j4" exit with 0. $$$[beg] make ruby -j4 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. creating verconf.h verconf.h updated compiling /tmp/ruby/src/trunk-repeat50/loadpath.c builtin_binary.inc updated compiling /tmp/ruby/src/trunk-repeat50/builtin.c linking static-library libruby-static.a linking shared-library libruby.so.3.3.0 linking ruby $$$[end] "make ruby -j4" exit with 0. $$$[beg] make all -j4 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk building spec/ruby/optional/capi/ext/array_spec.so building spec/ruby/optional/capi/ext/basic_object_spec.so encdb.h unchanged building spec/ruby/optional/capi/ext/bignum_spec.so building spec/ruby/optional/capi/ext/binding_spec.so building spec/ruby/optional/capi/ext/boolean_spec.so building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.so building spec/ruby/optional/capi/ext/class_spec.so building spec/ruby/optional/capi/ext/class_under_autoload_spec.so building spec/ruby/optional/capi/ext/complex_spec.so building spec/ruby/optional/capi/ext/constants_spec.so building spec/ruby/optional/capi/ext/data_spec.so building spec/ruby/optional/capi/ext/debug_spec.so building spec/ruby/optional/capi/ext/encoding_spec.so building spec/ruby/optional/capi/ext/enumerator_spec.so building spec/ruby/optional/capi/ext/exception_spec.so building spec/ruby/optional/capi/ext/fiber_spec.so building spec/ruby/optional/capi/ext/file_spec.so building spec/ruby/optional/capi/ext/fixnum_spec.so building spec/ruby/optional/capi/ext/float_spec.so building spec/ruby/optional/capi/ext/gc_spec.so building spec/ruby/optional/capi/ext/globals_spec.so building spec/ruby/optional/capi/ext/hash_spec.so building spec/ruby/optional/capi/ext/integer_spec.so building spec/ruby/optional/capi/ext/io_spec.so building spec/ruby/optional/capi/ext/kernel_spec.so building spec/ruby/optional/capi/ext/language_spec.so building spec/ruby/optional/capi/ext/marshal_spec.so building spec/ruby/optional/capi/ext/module_spec.so building spec/ruby/optional/capi/ext/module_under_autoload_spec.so building spec/ruby/optional/capi/ext/mutex_spec.so building spec/ruby/optional/capi/ext/numeric_spec.so building spec/ruby/optional/capi/ext/object_spec.so building spec/ruby/optional/capi/ext/proc_spec.so building spec/ruby/optional/capi/ext/range_spec.so building spec/ruby/optional/capi/ext/rational_spec.so building spec/ruby/optional/capi/ext/rbasic_spec.so building spec/ruby/optional/capi/ext/regexp_spec.so building spec/ruby/optional/capi/ext/st_spec.so building spec/ruby/optional/capi/ext/string_spec.so building spec/ruby/optional/capi/ext/struct_spec.so building spec/ruby/optional/capi/ext/symbol_spec.so building spec/ruby/optional/capi/ext/thread_spec.so building spec/ruby/optional/capi/ext/time_spec.so building spec/ruby/optional/capi/ext/tracepoint_spec.so building spec/ruby/optional/capi/ext/typed_data_spec.so building spec/ruby/optional/capi/ext/util_spec.so making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-repeat50/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' configuring rbs-3.2.2/ext/rbs_extension make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' compiling /tmp/ruby/src/trunk-repeat50/ext/coverage/coverage.c make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/object_tracing.c make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/objspace.c make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' compiling /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids1.c compiling /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids2.c linking shared-object coverage.so compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/objspace_dump.c make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' compiling /tmp/ruby/src/trunk-repeat50/ext/socket/init.c compiling /tmp/ruby/src/trunk-repeat50/ext/ripper/ripper.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/constants.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/basicsocket.c linking shared-object objspace.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/constants.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/socket.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/lexer.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ipsocket.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/lexstate.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/tcpsocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/tcpserver.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/location.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/sockssocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/udpsocket.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/main.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/unixsocket.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/parser.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/unixserver.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/option.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ancdata.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/parserstate.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/raddrinfo.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/ruby_objs.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ifaddr.c compiling /tmp/ruby/src/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension/unescape.c compiling /tmp/ruby/src/trunk-repeat50/ext/ripper/ripper_init.c ln -sfT ../../../../../src/trunk-repeat50/.bundle/gems/rbs-3.2.2/lib ../../../../../.bundle/gems/rbs-3.2.2/lib linking shared-object rbs_extension.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' checking /tmp/ruby/src/trunk-repeat50/parse.y and /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids2.c linking shared-object socket.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' linking shared-object ripper.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' $$$[end] "make all -j4" exit with 0. $$$[beg] make install -j4 Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk encdb.h unchanged From https://github.com/ruby/debug * branch 927587afb6aac69b358b86a01f602d207053e8d2 -> FETCH_HEAD echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - HEAD is now at 927587a Stop assuming Integer#times is written in C /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged making srcs under enc making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-repeat50/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' ./miniruby -I/tmp/ruby/src/trunk-repeat50/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat50/tool/runruby.rb --extout=.ext -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-repeat50/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j4 --jobserver-auth=4,5" --make-flags=" -j4 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="man" --gnumake --install=all --exclude=doc Installing to installing binary commands: /tmp/ruby/install/trunk-repeat50/bin installing base libraries: /tmp/ruby/install/trunk-repeat50/lib installing arch files: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.3.0+0/x86_64-linux installing pkgconfig data: /tmp/ruby/install/trunk-repeat50/lib/pkgconfig installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.3.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/site_ruby/3.3.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/vendor_ruby/3.3.0+0/x86_64-linux installing extension headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.3.0+0/x86_64-linux installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.3.0+0 installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/site_ruby/3.3.0+0 installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/vendor_ruby/3.3.0+0 installing extension headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.3.0+0/ruby installing command scripts: /tmp/ruby/install/trunk-repeat50/bin installing library scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.3.0+0 installing common headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.3.0+0 installing manpages: /tmp/ruby/install/trunk-repeat50/share/man/man1 installing default gems from lib: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.3.0+0 abbrev 0.1.1 base64 0.1.1 benchmark 0.2.1 bundler 2.5.0.dev cgi 0.3.6 csv 3.2.8 delegate 0.3.0 did_you_mean 1.6.3 drb 2.1.1 english 0.7.2 erb 4.0.3 error_highlight 0.5.1 fileutils 1.7.1 find 0.1.1 forwardable 1.3.3 getoptlong 0.2.0 ipaddr 1.2.5 irb 1.8.1 logger 1.5.3 mutex_m 0.1.2 net-http 0.3.2 net-protocol 0.2.1 observer 0.1.1 open-uri 0.3.0 open3 0.1.2 optparse 0.4.0.pre.1 ostruct 0.5.5 pp 0.4.0 prettyprint 0.1.1 prism 0.12.0 pstore 0.1.2 rdoc 6.5.0 readline 0.0.3 reline 0.3.8 resolv 0.2.2 resolv-replace 0.1.1 rinda 0.1.1 ruby2_keywords 0.0.5 securerandom 0.2.2 set 1.0.3 shellwords 0.1.0 singleton 0.1.1 syntax_suggest 1.1.0 tempfile 0.1.3 time 0.2.2 timeout 0.4.0 tmpdir 0.1.3 tsort 0.1.1 un 0.2.1 uri 0.12.2 weakref 0.1.2 yaml 0.2.1 installing default gems from ext: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.3.0+0 bigdecimal 3.1.4 date 3.3.3 digest 3.1.1 etc 1.4.2 fcntl 1.0.2 fiddle 1.1.2 io-console 0.6.0 io-nonblock 0.2.0 io-wait 0.3.0 json 2.6.3 nkf 0.1.3 openssl 3.2.0 pathname 0.2.1 psych 5.1.0 stringio 3.0.9 strscan 3.0.7 syslog 0.1.1 zlib 3.0.0 installing bundled gems: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.3.0+0 minitest 5.20.0 power_assert 2.0.3 rake 13.0.6 test-unit 3.6.1 rexml 3.2.6 rss 0.3.0 net-ftp 0.2.0 net-imap 0.3.7 net-pop 0.1.2 net-smtp 0.4.0 matrix 0.4.2 prime 0.1.2 rbs 3.2.2 typeprof 0.21.8 debug 1.8.0 racc 1.7.1 installing bundled gem cache: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.3.0+0/cache $$$[end] "make install -j4" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j4' PASS all 1854 tests $$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0. $$$[beg] make yes-test-basic TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Ignore setproctitle.o because of setproctitle.c under missing Ignore strlcat.o because of strlcat.c under missing Ignore strlcpy.o because of strlcpy.c under missing Checking leaked global symbols...none /tmp/ruby/src/trunk-repeat50/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:condition ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:if/unless ...OK 3 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:case .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:while/until ........OK 8 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:exception ..........OK 10 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:array .......................................OK 39 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:hash ...........................OK 27 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:iterator ...........................................................................................................OK 107 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:float ................................................................................OK 80 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:bignum ...............................OK 31 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:string & char ..............................................................OK 62 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:assignment ..........OK 10 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:call ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:proc .........OK 9 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:signal ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:eval ...........................OK 27 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:system ........OK 8 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:const .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:clone .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:marshal ....OK 4 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:pack ....OK 4 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:math ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:struct ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:variable ............OK 12 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:trace ...OK 3 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:defined? ............OK 12 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:alias ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:path .......................OK 23 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:gc ....OK 4 test succeeded $$$[end] "make yes-test-basic TESTS=--repeat-count=50" exit with 0. $$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-repeat50/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' Run options: --seed=57023 "--ruby=./miniruby -I/tmp/ruby/src/trunk-repeat50/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat50/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/tmp/ruby/src/trunk-repeat50/test/.excludes --name=!/memory_leak/ --stderr-on-failure --repeat-count=50 # Running tests: <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition <compiled>:1: warning: regex literal in condition 1) Error: TestRequireLib#test_thread_size:yarp/mutation_visitor: NameError: uninitialized constant YARP::BasicVisitor /tmp/ruby/src/trunk-repeat50/lib/yarp/mutation_visitor.rb:12:in `<module:YARP>' /tmp/ruby/src/trunk-repeat50/lib/yarp/mutation_visitor.rb:8:in `<top (required)>' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:23:in `require' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:23:in `<main>' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:20:in `block (2 levels) in <class:TestRequireLib>' 2) Error: TestRequireLib#test_thread_size:yarp/node: NameError: uninitialized constant YARP::Node /tmp/ruby/src/trunk-repeat50/lib/yarp/node.rb:13:in `<module:YARP>' /tmp/ruby/src/trunk-repeat50/lib/yarp/node.rb:8:in `<top (required)>' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:23:in `require' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:23:in `<main>' /tmp/ruby/src/trunk-repeat50/test/ruby/test_require_lib.rb:20:in `block (2 levels) in <class:TestRequireLib>' Finished(1/50) tests in 1125.980101s, 23.6398 tests/s, 8336.7477 assertions/s. 26618 tests, 9387012 assertions, 0 failures, 2 errors, 95 skips ruby -v: ruby 3.3.0dev (2023-09-28T03:02:00Z master e9bc51966b) [x86_64-linux] make: *** [uncommon.mk:939: yes-test-all] Error 2 $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=50" exit with 512. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-repeat50/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.7.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' $ /tmp/ruby/build/trunk-repeat50/miniruby -I/tmp/ruby/src/trunk-repeat50/lib /tmp/ruby/src/trunk-repeat50/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-repeat50 --extout=.ext -- /tmp/ruby/src/trunk-repeat50/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-repeat50/spec/default.mspec --error-output stderr --debug ruby 3.3.0dev (2023-09-28T03:02:00Z master e9bc51966b) [x86_64-linux] 0 ......................................................................... 73 ......................................................................... 146 ......................................................................... 219 ......................................................................... 292 ......................................................................... 365 ......................................................................... 438 ......................................................................... 511 ......................................................................... 584 ......................................................................... 657 ......................................................................... 730 ......................................................................... 803 ......................................................................... 876 ......................................................................... 949 ......................................................................... 1022 ......................................................................... 1095 ......................................................................... 1168 ......................................................................... 1241 ......................................................................... 1314 ......................................................................... 1387 ......................................................................... 1460 ......................................................................... 1533 ......................................................................... 1606 ......................................................................... 1679 ......................................................................... 1752 ......................................................................... 1825 ......................................................................... 1898 ......................................................................... 1971 ......................................................................... 2044 ......................................................................... 2117 ......................................................................... 2190 ......................................................................... 2263 ......................................................................... 2336 ......................................................................... 2409 ......................................................................... 2482 ......................................................................... 2555 ......................................................................... 2628 ......................................................................... 2701 ......................................................................... 2774 ......................................................................... 2847 ......................................................................... 2920 ......................................................................... 2993 ......................................................................... 3066 ......................................................................... 3139 ......................................................................... 3212 ......................................................................... 3285 ......................................................................... 3358 ......................................................................... 3431 ......................................................................... 3504 ......................................................................... 3577 ......................................................................... 3650 ................................................................. Finished in 131.416864 seconds 3715 files, 32232 examples, 170209 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS=--repeat-count=50" exit with 0.