Skip to content

Commit

Permalink
Rename RubyVM::MJIT to RubyVM::JIT
Browse files Browse the repository at this point in the history
because the name "MJIT" is an internal code name, it's inconsistent with
--jit while they are related to each other, and I want to discourage future
JIT implementation-specific (e.g. MJIT-specific) APIs by this rename.

[Feature #17490]
  • Loading branch information
k0kubun authored and aycabta committed Jan 17, 2021
1 parent dfb7109 commit b8b3dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reline/test_within_pipe.rb
Expand Up @@ -8,7 +8,7 @@ def setup
@reader, @output_writer = IO.pipe((RELINE_TEST_ENCODING rescue Encoding.default_external))
@output = Reline.output = @output_writer
@config = Reline.send(:core).config
@config.keyseq_timeout *= 600 if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? # for --jit-wait CI
@config.keyseq_timeout *= 600 if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? # for --jit-wait CI
@line_editor = Reline.send(:core).line_editor
end

Expand Down

0 comments on commit b8b3dd5

Please sign in to comment.