class Elparser::SExpNil

Public Instance Methods

list?() click to toggle source
# File lib/elparser.rb, line 35
def list?
  true
end
to_ruby() click to toggle source
# File lib/elparser.rb, line 44
def to_ruby
  nil
end
to_s() click to toggle source
# File lib/elparser.rb, line 38
def to_s
  "nil"
end
visit() click to toggle source
# File lib/elparser.rb, line 41
def visit
  # do nothing
end