ruby/lib/ruby_vm/mjit/compiler.rb
2023-03-05 22:11:20 -08:00

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