mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
8 lines
144 B
Ruby
8 lines
144 B
Ruby
class RubyVM::MJIT::Context < Struct.new(
|
|
:stack_size, # @param [Integer]
|
|
)
|
|
def initialize(*)
|
|
super
|
|
self.stack_size ||= 0
|
|
end
|
|
end
|