summaryrefslogtreecommitdiff
path: root/lib/mjit/context.rb
blob: 2bc499cd4e739c851af29f86412d58692e29273e (plain)
1
2
3
4
5
6
7
8
class RubyVM::MJIT::Context < Struct.new(
  :stack_size, # @param [Integer]
)
  def initialize(*)
    super
    self.stack_size ||= 0
  end
end