Class: Class
Instance Method Summary collapse
Instance Method Details
#native_alias(new_jsid, existing_mid) ⇒ Object
612 613 614 615 616 617 618 619 620 |
# File 'opal/stdlib/native.rb', line 612 def native_alias(new_jsid, existing_mid) %x{ var aliased = #{self}.prototype['$' + #{existing_mid}]; if (!aliased) { #{raise NameError.new("undefined method `#{existing_mid}' for class `#{inspect}'", existing_mid)}; } #{self}.prototype[#{new_jsid}] = aliased; } end |
#native_class ⇒ Object
622 623 624 625 |
# File 'opal/stdlib/native.rb', line 622 def native_class native_module `self["new"] = self.$new` end |