# Logfile created on 2023-09-27 17:57:40 +0000 by logger.rb/v1.5.3
#<BuildRuby:0x0000fffcb100fdd0 @REPOSITORY="https://github.com/ruby/ruby.git", @REPOSITORY_TYPE=:git, @git_branch=nil, @git_worktree=nil, @svn_revision=nil, @SRC_DIR="/home/opc/ruby/src", @BUILD_DIR="/home/opc/ruby/build", @INSTALL_DIR="/home/opc/ruby/install", @TARGET_NAME="master", @TARGET_SRC_DIR="/home/opc/ruby/src/master", @TARGET_BUILD_DIR="/home/opc/ruby/build/master", @TARGET_INSTALL_DIR="/home/opc/ruby/install/master", @configure_opts=["--disable-dtrace --disable-yjit"], @build_opts="-j3", @btest_opts="-j3", @test_opts="TESTS='-j3'", @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=10800, @logfile="/home/opc/ruby/logs/brlog.master.20230927-175740", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x0000fffcb0f3b468 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x0000fffcb0f3b300 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0000fffcb0fdcae8 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/opc/ruby/logs/brlog.master.20230927-175740", @dev=#<File:/home/opc/ruby/logs/brlog.master.20230927-175740>, @binmode=false, @mon_data=#<Monitor:0x0000fffcb0f3afe0>, @mon_data_owner_object_id=860>>>
$$$[beg] make update-unicode -j3
make: Nothing to be done for 'update-unicode'.
$$$[end] "make update-unicode -j3" exit with 0.
$$$[beg] make update-download -j3
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 /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision -
/home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged
$$$[end] "make update-download -j3" exit with 0.
$$$[beg] make update-rubyspec -j3
make: Nothing to be done for 'update-rubyspec'.
$$$[end] "make update-rubyspec -j3" exit with 0.
$$$[beg] make update-src -j3
From https://github.com/ruby/ruby
7e0971e..224e76a master -> origin/master
Updating 7e0971e..224e76a
Fast-forward
.gitignore | 28 +-
NEWS.md | 2 +-
common.mk | 2414 ++---
compile.c | 22 +-
inits.c | 2 +-
iseq.c | 45 +-
lib/{yarp.rb => prism.rb} | 54 +-
lib/{yarp => prism}/debug.rb | 12 +-
lib/{yarp => prism}/desugar_compiler.rb | 2 +-
lib/{yarp => prism}/ffi.rb | 116 +-
lib/{yarp => prism}/lex_compat.rb | 16 +-
lib/{yarp => prism}/node_ext.rb | 4 +-
lib/{yarp => prism}/node_inspector.rb | 2 +-
lib/{yarp => prism}/pack.rb | 2 +-
lib/{yarp => prism}/parse_result.rb | 10 +-
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/language_server.rb | 166 -
lib/yarp/version.rb | 5 -
lib/yarp/yarp.gemspec | 113 -
{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 | 1164 +--
prism/prism_init.c | 9 +
{yarp => prism}/regexp.c | 264 +-
prism/regexp.h | 19 +
.../templates/ext/prism}/api_node.c.erb | 130 +-
prism/templates/include/prism/ast.h.erb | 116 +
.../templates/lib/prism}/compiler.rb.erb | 6 +-
.../templates/lib/prism}/dispatcher.rb.erb | 4 +-
.../yarp => prism/templates/lib/prism}/dsl.rb.erb | 22 +-
.../templates/lib/prism}/mutation_compiler.rb.erb | 6 +-
.../yarp => prism/templates/lib/prism}/node.rb.erb | 48 +-
.../templates/lib/prism}/serialize.rb.erb | 30 +-
.../templates/lib/prism}/visitor.rb.erb | 4 +-
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 | 42 +-
{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 | 56 +-
.../util/pm_constant_pool.h | 38 +-
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 +
test/{yarp => prism}/bom_test.rb | 4 +-
test/{yarp => prism}/comments_test.rb | 6 +-
test/{yarp => prism}/compiler_test.rb | 6 +-
test/{yarp => prism}/desugar_compiler_test.rb | 6 +-
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 => prism}/iseq_test.rb | 190 +-
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 | 24 +-
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 +-
tool/leaked-globals | 2 +-
tool/sync_default_gems.rb | 46 +-
tool/update-deps | 16 +-
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 -
1965 files changed, 11162 insertions(+), 11328 deletions(-)
rename lib/{yarp.rb => prism.rb} (51%)
rename lib/{yarp => prism}/debug.rb (94%)
rename lib/{yarp => prism}/desugar_compiler.rb (99%)
rename lib/{yarp => prism}/ffi.rb (66%)
rename lib/{yarp => prism}/lex_compat.rb (98%)
rename lib/{yarp => prism}/node_ext.rb (94%)
rename lib/{yarp => prism}/node_inspector.rb (99%)
rename lib/{yarp => prism}/pack.rb (99%)
rename lib/{yarp => prism}/parse_result.rb (94%)
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/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 (61%)
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 (59%)
create mode 100644 prism/templates/include/prism/ast.h.erb
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/compiler.rb.erb (91%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/dispatcher.rb.erb (98%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/dsl.rb.erb (67%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/mutation_compiler.rb.erb (70%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/node.rb.erb (83%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/serialize.rb.erb (84%)
rename {yarp/templates/lib/yarp => prism/templates/lib/prism}/visitor.rb.erb (96%)
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 (80%)
rename yarp/util/yp_constant_pool.h => prism/util/pm_constant_pool.h (65%)
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%)
rename test/{yarp => prism}/compiler_test.rb (78%)
rename test/{yarp => prism}/desugar_compiler_test.rb (97%)
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 => prism}/iseq_test.rb (58%)
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 (92%)
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 = 224e76ada7
$$$[end] "make update-src -j3" exit with 0.
$$$[beg] make after-update -j3
sed 's/{\$([^(){}]*)[^{}]*}//g' /home/opc/ruby/src/master/common.mk > uncommon.mk
/home/opc/ruby/src/master/revision.h updated
generating /home/opc/ruby/src/master/ext/ripper/eventids2table.c
make[1]: Entering directory '/home/opc/ruby/src/master/ext/ripper'
make[1]: Nothing to be done for 'src'.
make[1]: Leaving directory '/home/opc/ruby/src/master/ext/ripper'
generating aarch64-linux-fake.rb
aarch64-linux-fake.rb updated
/bin/sh /home/opc/ruby/src/master/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp
rbconfig.rb unchanged
generating enc.mk
making srcs under enc
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
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 /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision -
/home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged
$$$[end] "make after-update -j3" exit with 0.
$$$[beg] make miniruby -j3
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = -j3 --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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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 /home/opc/ruby/src/master/compile.c
compiling /home/opc/ruby/src/master/inits.c
compiling /home/opc/ruby/src/master/iseq.c
compiling /home/opc/ruby/src/master/version.c
compiling prism/api_node.c
compiling /home/opc/ruby/src/master/prism/api_pack.c
compiling /home/opc/ruby/src/master/prism/diagnostic.c
compiling /home/opc/ruby/src/master/prism/enc/pm_big5.c
compiling /home/opc/ruby/src/master/prism/enc/pm_euc_jp.c
compiling /home/opc/ruby/src/master/prism/enc/pm_gbk.c
compiling /home/opc/ruby/src/master/prism/enc/pm_shift_jis.c
compiling /home/opc/ruby/src/master/prism/enc/pm_tables.c
compiling /home/opc/ruby/src/master/prism/enc/pm_unicode.c
compiling /home/opc/ruby/src/master/prism/enc/pm_windows_31j.c
compiling /home/opc/ruby/src/master/prism/extension.c
compiling prism/node.c
compiling /home/opc/ruby/src/master/prism/pack.c
compiling prism/prettyprint.c
compiling /home/opc/ruby/src/master/prism/regexp.c
compiling prism/serialize.c
compiling prism/token_type.c
compiling /home/opc/ruby/src/master/prism/unescape.c
compiling /home/opc/ruby/src/master/prism/util/pm_buffer.c
compiling /home/opc/ruby/src/master/prism/util/pm_char.c
compiling /home/opc/ruby/src/master/prism/util/pm_constant_pool.c
compiling /home/opc/ruby/src/master/prism/util/pm_list.c
compiling /home/opc/ruby/src/master/prism/util/pm_memchr.c
compiling /home/opc/ruby/src/master/prism/util/pm_newline_list.c
compiling /home/opc/ruby/src/master/prism/util/pm_state_stack.c
compiling /home/opc/ruby/src/master/prism/util/pm_string.c
compiling /home/opc/ruby/src/master/prism/util/pm_string_list.c
compiling /home/opc/ruby/src/master/prism/util/pm_strncasecmp.c
compiling /home/opc/ruby/src/master/prism/util/pm_strpbrk.c
compiling /home/opc/ruby/src/master/prism/prism.c
compiling /home/opc/ruby/src/master/prism/prism_init.c
linking miniruby
$$$[end] "make miniruby -j3" exit with 0.
$$$[beg] make ruby -j3
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = -j3 --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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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 /home/opc/ruby/src/master/loadpath.c
builtin_binary.inc updated
compiling /home/opc/ruby/src/master/builtin.c
linking static-library libruby-static.a
linking ruby
$$$[end] "make ruby -j3" exit with 0.
$$$[beg] make all -j3
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = -j3 --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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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
making srcs under enc
making enc
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
making trans
ext/configure-ext.mk updated
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making encs
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/date'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Entering directory '/home/opc/ruby/build/master'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
$$$[end] "make all -j3" exit with 0.
$$$[beg] make install -j3
Update debug to 927587afb6aac69b358b86a01f602d207053e8d2
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = -j3 --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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
generating encdb.h
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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
encdb.h unchanged
making srcs under enc
making enc
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
making trans
ext/configure-ext.mk unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making encs
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 /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision -
/home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/date'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Entering directory '/home/opc/ruby/build/master'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
./miniruby -I/home/opc/ruby/src/master/lib -I. -I.ext/common /home/opc/ruby/src/master/tool/runruby.rb --extout=.ext -- --disable-gems -r./aarch64-linux-fake /home/opc/ruby/src/master/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j3 --jobserver-auth=4,5" --make-flags=" -j3 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="doc" --gnumake --install=all --exclude=doc
Installing to
installing binary commands: /home/opc/ruby/install/master/bin
installing base libraries: /home/opc/ruby/install/master/lib
installing arch files: /home/opc/ruby/install/master/lib/ruby/3.3.0+0/aarch64-linux
installing pkgconfig data: /home/opc/ruby/install/master/lib/pkgconfig
installing extension objects: /home/opc/ruby/install/master/lib/ruby/3.3.0+0/aarch64-linux
installing extension objects: /home/opc/ruby/install/master/lib/ruby/site_ruby/3.3.0+0/aarch64-linux
installing extension objects: /home/opc/ruby/install/master/lib/ruby/vendor_ruby/3.3.0+0/aarch64-linux
installing extension headers: /home/opc/ruby/install/master/include/ruby-3.3.0+0/aarch64-linux
installing extension scripts: /home/opc/ruby/install/master/lib/ruby/3.3.0+0
installing extension scripts: /home/opc/ruby/install/master/lib/ruby/site_ruby/3.3.0+0
installing extension scripts: /home/opc/ruby/install/master/lib/ruby/vendor_ruby/3.3.0+0
installing extension headers: /home/opc/ruby/install/master/include/ruby-3.3.0+0/ruby
installing command scripts: /home/opc/ruby/install/master/bin
installing library scripts: /home/opc/ruby/install/master/lib/ruby/3.3.0+0
installing common headers: /home/opc/ruby/install/master/include/ruby-3.3.0+0
installing manpages: /home/opc/ruby/install/master/share/man/man1
installing default gems from lib: /home/opc/ruby/install/master/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: /home/opc/ruby/install/master/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: /home/opc/ruby/install/master/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.3.3
matrix 0.4.2
prime 0.1.2
rbs 3.2.1
typeprof 0.21.8
debug 1.8.0
racc 1.7.1
installing bundled gem cache: /home/opc/ruby/install/master/lib/ruby/gems/3.3.0+0/cache
$$$[end] "make install -j3" exit with 0.
$$$[beg] make yes-btest TESTOPTS='-q -j3'
PASS all 1854 tests
$$$[end] "make yes-btest TESTOPTS='-q -j3'" exit with 0.
$$$[beg] make yes-test-basic TESTS='-j3'
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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
/home/opc/ruby/src/master/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372
/home/opc/ruby/src/master/basictest/test.rb:condition ..OK 2
/home/opc/ruby/src/master/basictest/test.rb:if/unless ...OK 3
/home/opc/ruby/src/master/basictest/test.rb:case .....OK 5
/home/opc/ruby/src/master/basictest/test.rb:while/until ........OK 8
/home/opc/ruby/src/master/basictest/test.rb:exception ..........OK 10
/home/opc/ruby/src/master/basictest/test.rb:array .......................................OK 39
/home/opc/ruby/src/master/basictest/test.rb:hash ...........................OK 27
/home/opc/ruby/src/master/basictest/test.rb:iterator ...........................................................................................................OK 107
/home/opc/ruby/src/master/basictest/test.rb:float ................................................................................OK 80
/home/opc/ruby/src/master/basictest/test.rb:bignum ...............................OK 31
/home/opc/ruby/src/master/basictest/test.rb:string & char ..............................................................OK 62
/home/opc/ruby/src/master/basictest/test.rb:assignment ..........OK 10
/home/opc/ruby/src/master/basictest/test.rb:call ......OK 6
/home/opc/ruby/src/master/basictest/test.rb:proc .........OK 9
/home/opc/ruby/src/master/basictest/test.rb:signal ..OK 2
/home/opc/ruby/src/master/basictest/test.rb:eval ...........................OK 27
/home/opc/ruby/src/master/basictest/test.rb:system ........OK 8
/home/opc/ruby/src/master/basictest/test.rb:const .....OK 5
/home/opc/ruby/src/master/basictest/test.rb:clone .....OK 5
/home/opc/ruby/src/master/basictest/test.rb:marshal ....OK 4
/home/opc/ruby/src/master/basictest/test.rb:pack ....OK 4
/home/opc/ruby/src/master/basictest/test.rb:math ..OK 2
/home/opc/ruby/src/master/basictest/test.rb:struct ......OK 6
/home/opc/ruby/src/master/basictest/test.rb:variable ............OK 12
/home/opc/ruby/src/master/basictest/test.rb:trace ...OK 3
/home/opc/ruby/src/master/basictest/test.rb:defined? ............OK 12
/home/opc/ruby/src/master/basictest/test.rb:alias ......OK 6
/home/opc/ruby/src/master/basictest/test.rb:path .......................OK 23
/home/opc/ruby/src/master/basictest/test.rb:gc ....OK 4
test succeeded
$$$[end] "make yes-test-basic TESTS='-j3'" exit with 0.
$$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j3'
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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 '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making srcs under enc
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making encs
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/date'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/json'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/home/opc/ruby/build/master'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
Run options:
--seed=25373
"--ruby=./miniruby -I/home/opc/ruby/src/master/lib -I. -I.ext/common /home/opc/ruby/src/master/tool/runruby.rb --extout=.ext -- --disable-gems"
--excludes-dir=/home/opc/ruby/src/master/test/.excludes
--name=!/memory_leak/
--stderr-on-failure
-j3
# Running tests:
Leaked file descriptor: TestProcess#test_uid_from_name: 7 #<File::Stat dev=0xfc00, ino=1757516, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=9253600, blksize=65536, blocks=18080, atime=2023-09-27 17:58:45.519107006 +0000, mtime=2023-09-27 17:58:23.279039326 +0000, ctime=2023-09-27 17:58:23.279039326 +0000>
Leaked file descriptor: TestProcess#test_uid_from_name: 8 #<File::Stat dev=0x9, ino=3461484482, mode=0140777, nlink=1, uid=1000, gid=1000, rdev=0x0, size=0, blksize=65536, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000>
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ruby 502340 opc 7r REG 252,0 9253600 1757516 /var/lib/sss/mc/passwd
ruby 502340 opc 8u unix 0x0000000000000000 0t0 3461484482 type=STREAM
Leaked file descriptor: TestProcess#test_gid_from_name: 9 #<File::Stat dev=0xfc00, ino=1757517, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=6940392, blksize=65536, blocks=13560, atime=2023-09-27 17:58:42.783098679 +0000, mtime=2023-09-27 17:58:34.495073458 +0000, ctime=2023-09-27 17:58:34.495073458 +0000>
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ruby 502340 opc 9r REG 252,0 6940392 1757517 /var/lib/sss/mc/group
Leaked file descriptor: TestEtc#test_getgrnam: 10 #<File::Stat dev=0x9, ino=3461501894, mode=0140777, nlink=1, uid=1000, gid=1000, rdev=0x0, size=0, blksize=65536, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000>
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ruby 502338 opc 10u unix 0x0000000000000000 0t0 3461501894 type=STREAM
Leaked file descriptor: TestEtc#test_getpwnam: 11 #<File::Stat dev=0xfc00, ino=1757516, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=9253600, blksize=65536, blocks=18080, atime=2023-09-27 17:58:45.519107006 +0000, mtime=2023-09-27 17:59:44.803287415 +0000, ctime=2023-09-27 17:59:44.803287415 +0000>
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ruby 502338 opc 11r REG 252,0 9253600 1757516 /var/lib/sss/mc/passwd
Leaked file descriptor: TestOptionParserLoad#test_load_nothing: 11 #<File::Stat dev=0xfc00, ino=1757516, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=9253600, blksize=65536, blocks=18080, atime=2023-09-27 17:59:44.839287524 +0000, mtime=2023-09-27 17:59:44.803287415 +0000, ctime=2023-09-27 17:59:44.803287415 +0000>
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ruby 502339 opc 11r REG 252,0 9253600 1757516 /var/lib/sss/mc/passwd
Retrying...
1) Error:
TestRequireLib#test_thread_size:yarp/dispatcher:
NameError: uninitialized constant YARP::Visitor
/home/opc/ruby/src/master/lib/yarp/dispatcher.rb:40:in `<module:YARP>'
/home/opc/ruby/src/master/lib/yarp/dispatcher.rb:8:in `<top (required)>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `require'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `<main>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:20:in `block (2 levels) in <class:TestRequireLib>'
2) Error:
TestRequireLib#test_thread_size:yarp/mutation_compiler:
NameError: uninitialized constant YARP::Compiler
/home/opc/ruby/src/master/lib/yarp/mutation_compiler.rb:12:in `<module:YARP>'
/home/opc/ruby/src/master/lib/yarp/mutation_compiler.rb:8:in `<top (required)>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `require'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `<main>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:20:in `block (2 levels) in <class:TestRequireLib>'
3) Error:
TestRequireLib#test_thread_size:yarp/mutation_visitor:
NameError: uninitialized constant YARP::BasicVisitor
/home/opc/ruby/src/master/lib/yarp/mutation_visitor.rb:12:in `<module:YARP>'
/home/opc/ruby/src/master/lib/yarp/mutation_visitor.rb:8:in `<top (required)>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `require'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:23:in `<main>'
/home/opc/ruby/src/master/test/ruby/test_require_lib.rb:20:in `block (2 levels) in <class:TestRequireLib>'
Finished tests in 172.815700s, 153.4120 tests/s, 54254.6019 assertions/s.
26512 tests, 9376047 assertions, 0 failures, 3 errors, 178 skips
ruby -v: ruby 3.3.0dev (2023-09-27T17:57:38Z master 224e76ada7) [aarch64-linux]
make: *** [uncommon.mk:939: yes-test-all] Error 3
$$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j3'" exit with 512.
$$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j3'
BASERUBY = /usr/local/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
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie
SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread
LANG = en_US.UTF-8
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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs
gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1)
Copyright (C) 2018 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 '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making srcs under enc
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
making encs
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/home/opc/ruby/build/master'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/bigdecimal'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/date'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/json'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/nkf'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket'
make[2]: Entering directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Leaving directory '/home/opc/ruby/build/master/ext/syslog'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/home/opc/ruby/build/master'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Leaving directory '/home/opc/ruby/build/master'
make[1]: Entering directory '/home/opc/ruby/build/master'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/home/opc/ruby/build/master'
$ /home/opc/ruby/build/master/miniruby -I/home/opc/ruby/src/master/lib /home/opc/ruby/src/master/tool/runruby.rb --archdir=/home/opc/ruby/build/master --extout=.ext -- /home/opc/ruby/src/master/spec/mspec/bin/mspec-run -B /home/opc/ruby/src/master/spec/default.mspec --error-output stderr --debug
ruby 3.3.0dev (2023-09-27T17:57:38Z master 224e76ada7) [aarch64-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 63.714502 seconds
3715 files, 32613 examples, 210071 expectations, 0 failures, 0 errors, 0 tagged
$$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j3'" exit with 0.