Sha256: 1b082dfcf17e114732e4396ac618a191e02e51d3af936b92cdb2daeeb5b9b5a7

Contents?: true

Size: 1.76 KB

Versions: 10

Compression:

Stored size: 1.76 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 descendants
    subclasses + subclasses.map(&:descendants).flatten
  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 subclasses
    %x{
      if (typeof WeakRef !== 'undefined') {
        var i, subclass, out = [];
        for (i = 0; i < self.$$subclasses.length; i++) {
          subclass = self.$$subclasses[i].deref();
          if (subclass !== undefined) {
            out.push(subclass);
          }
        }
        return out;
      }
      else {
        return self.$$subclasses;
      }
    }
  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

  alias inspect to_s
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
opal-1.6.1 opal/corelib/class.rb
opal-1.6.0 opal/corelib/class.rb
opal-1.6.0.rc1 opal/corelib/class.rb
opal-1.6.0.alpha1 opal/corelib/class.rb
opal-1.5.1 opal/corelib/class.rb
opal-1.5.0 opal/corelib/class.rb
opal-1.5.0.rc1 opal/corelib/class.rb
opal-1.4.1 opal/corelib/class.rb
opal-1.4.0 opal/corelib/class.rb
opal-1.4.0.alpha1 opal/corelib/class.rb