class Object

Public Instance Methods

construct_list?() click to toggle source
# File lib/forsta/object.rb, line 2
def construct_list?
  false
end
lisp_eval(environment, forms) click to toggle source
# File lib/forsta/object.rb, line 14
def lisp_eval(environment, forms)
  self
end
to_array() click to toggle source
# File lib/forsta/object.rb, line 6
def to_array
  self
end
to_construct() click to toggle source
# File lib/forsta/object.rb, line 10
def to_construct
  self
end