Class: Class
Instance Method Summary collapse
Instance Method Details
#native_alias(new_jsid, existing_mid) ⇒ Object
617 618 619 620 621 622 623 624 625 |
# File 'opal/stdlib/native.rb', line 617 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
627 628 629 630 |
# File 'opal/stdlib/native.rb', line 627 def native_class native_module `self["new"] = self.$new` end |