class RKelly::JS::GlobalObject

Public Class Methods

new() click to toggle source
Calls superclass method RKelly::JS::Base.new
# File lib/rkelly/js/global_object.rb, line 4
def initialize
  super
  self['class']     = 'GlobalObject'
  self['NaN']       = JS::NaN.new
  self['NaN'].attributes << :dont_enum
  self['NaN'].attributes << :dont_delete

  self['Infinity']  = 1.0/0.0
  self['Infinity'].attributes << :dont_enum
  self['Infinity'].attributes << :dont_delete

  self['undefined'] = :undefined
  self['undefined'].attributes << :dont_enum
  self['undefined'].attributes << :dont_delete

  self['Array'] = JS::Array.new
  self['Array'].function = lambda { |*args|
    JS::Array.create(*args)
  }

  self['Object'] = JS::Object.new
  self['Object'].function = lambda { |*args|
    JS::Object.create(*args)
  }

  self['Math'] = JS::Math.new

  self['Function'] = :undefined
  self['Function'].function = lambda { |*args|
    JS::Function.create(*args)
  }

  self['Number'] = JS::Number.new
  self['Number'].function = lambda { |*args|
    JS::Number.create(*args)
  }

  self['Boolean'] = JS::Boolean.new
  self['Boolean'].function = lambda { |*args|
    JS::Boolean.create(*args)
  }
  self['String'] = JS::String.new('')
  self['String'].function = lambda { |*args|
    JS::String.create(*args)
  }
end