class RKelly::JS::FunctionPrototype
This is the object protytpe ECMA-262 15.2.4
Public Class Methods
new(function)
click to toggle source
Calls superclass method
# File lib/rkelly/js/function_prototype.rb, line 6 def initialize(function) super() self['Class'] = 'Object' self['constructor'] = function self['arguments'].value = nil end