Sha256: 12859985ed8e5cc33968e2bf6b74d48ef01164f35b981ba11bbadf2147f6de65
Contents?: true
Size: 552 Bytes
Versions: 254
Compression:
Stored size: 552 Bytes
Contents
package com.xruby.runtime.lang; public abstract class RubySpecialValue extends RubyValue { public void setRubyClass(RubyClass klass) { throw new RubyException(RubyRuntime.TypeErrorClass, this.getRubyClass().getName() + " can't be set class"); } public RubyClass getSingletonClass() { throw new RubyException(RubyRuntime.TypeErrorClass, this.getRubyClass().getName() + " can't define singleton"); } public RubyValue clone() { throw new RubyException(RubyRuntime.TypeErrorClass, "can't clone " + this.getRubyClass().getName()); } }
Version data entries
254 entries across 136 versions & 2 rubygems