mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
10 lines
206 B
Ruby
10 lines
206 B
Ruby
class RubyVM::MJIT::Compiler
|
|
INSNS = RubyVM::MJIT.const_get(:INSNS, false)
|
|
|
|
def initialize = freeze
|
|
|
|
# @param iseq [RubyVM::MJIT::CPointer::Struct]
|
|
def compile(iseq)
|
|
# TODO: implement
|
|
end
|
|
end
|