mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 14:34:39 +02:00
9 lines
509 B
Ruby
9 lines
509 B
Ruby
class RubyVM::MJIT::BlockStub < Struct.new(
|
|
:iseq, # @param [RubyVM::MJIT::CPointer::Struct_rb_iseq_struct] Stub target ISEQ
|
|
:ctx, # @param [RubyVM::MJIT::Context] Stub target context
|
|
:pc, # @param [Integer] Stub target pc
|
|
:start_addr, # @param [Integer] Stub source start address to be re-generated
|
|
:end_addr, # @param [Integer] Stub source end address to be re-generated
|
|
:change_block, # @param [Proc] Recompile the source address with a new block address
|
|
)
|
|
end
|