mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 21:14:28 +00:00
8 lines
226 B
Ruby
8 lines
226 B
Ruby
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
|