mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 05:29:10 +02:00
7 lines
226 B
Ruby
7 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
|