Sha256: 93b1fa6d7592ece4f476d63b7aa74fbb0f870dca5b8e8450b304596bafff4aaf
Contents?: true
Size: 1.26 KB
Versions: 6
Compression:
Stored size: 1.26 KB
Contents
require 'corelib/module' class Class def self.new(superclass = Object, &block) %x{ if (!superclass.$$is_class) { throw Opal.TypeError.$new("superclass must be a Class"); } var klass = Opal.allocate_class(nil, superclass); superclass.$inherited(klass); #{`klass`.class_eval(&block) if block_given?} return klass; } end def allocate %x{ var obj = new self.$$constructor(); obj.$$id = Opal.uid(); return obj; } end def inherited(cls) end def initialize_dup(original) initialize_copy(original) %x{ self.$$name = null; self.$$full_name = null; } end def new(*args, &block) %x{ var object = #{allocate}; Opal.send(object, object.$initialize, args, block); return object; } end def superclass `self.$$super || nil` end def to_s %x{ var singleton_of = self.$$singleton_of; if (singleton_of && singleton_of.$$is_a_module) { return #{"#<Class:#{`singleton_of`.name}>"}; } else if (singleton_of) { // a singleton class created from an object return #{"#<Class:#<#{`singleton_of.$$class`.name}:0x#{`Opal.id(singleton_of)`.to_s(16)}>>"}; } return #{super()}; } end end
Version data entries
6 entries across 6 versions & 1 rubygems