Class: Rhino::Ruby::DefaultAccess

Inherits:
AccessBase show all
Extended by:
DeprecatedAccess
Defined in:
lib/rhino/ruby/default_access.rb

Instance Method Summary collapse

Instance Method Details

#get(object, name, scope) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/rhino/ruby/default_access.rb', line 13

def get(object, name, scope)
  if object.respond_to?(name_s = name.to_s)
    method = object.method(name_s)
    if method.arity == 0
      return Rhino.to_javascript(method.call, scope)
    else
      return Function.wrap(method.unbind)
    end
  elsif object.respond_to?(:"#{name}=")
    return nil
  end
  super
end

#has(object, name, scope) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/rhino/ruby/default_access.rb', line 5

def has(object, name, scope)
  if object.respond_to?(name.to_s) || 
     object.respond_to?(:"#{name}=")
    return true
  end
  super
end

#put(object, name, value) ⇒ Object



27
28
29
30
31
32
# File 'lib/rhino/ruby/default_access.rb', line 27

def put(object, name, value)
  if object.respond_to?(set_name = :"#{name}=")
    return object.send(set_name, Rhino.to_ruby(value))
  end
  super
end