summaryrefslogtreecommitdiff
path: root/lib/ruby_vm/rjit/entry_stub.rb
blob: 9bcef140536b0424a0f17a5cc6d4fd3d6b1cd5cb (plain)
1
2
3
4
5
6
7
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