ruby/lib/ruby_vm/rjit/entry_stub.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 строки
226 B
Ruby
Исходник Обычный вид История

2023-04-03 01:26:46 +03:00
module RubyVM::RJIT
class EntryStub < Struct.new(
:start_addr, # @param [Integer] Stub source start address to be re-generated
:end_addr, # @param [Integer] Stub source end address to be re-generated
)
end
end