Temporary tag for this failure. Updated CI spec coming.
[rbx.git] / kernel / bootstrap / compiled_method.rb
blob05e7d323752c6ae4ec588d5ef8bbd610eb23a324
1 class CompiledMethod
2   def self.load_from_file(path, version)
3     Ruby.primitive :load_file
4     raise PrimitiveFailure, "primitive failed"
5   end
7   def activate_as_script
8     Ruby.primitive :activate_as_script
9     raise PrimitiveFailure, "primitive failed"
10   end
12   def compile
13     Ruby.primitive :iseq_compile
14     raise PrimitiveFailure, "primitive failed"
15   end
16 end