Class: Elparser::SExpNil
- Inherits:
-
AbstractSExpAtom
- Object
- AbstractSExp
- AbstractSExpAtom
- Elparser::SExpNil
- Defined in:
- lib/elparser.rb
Instance Method Summary collapse
Methods inherited from AbstractSExpAtom
Methods inherited from AbstractSExp
Instance Method Details
#list? ⇒ Boolean
35 36 37 |
# File 'lib/elparser.rb', line 35 def list? true end |
#to_ruby ⇒ Object
do nothing
44 45 46 |
# File 'lib/elparser.rb', line 44 def to_ruby nil end |
#to_s ⇒ Object
38 39 40 |
# File 'lib/elparser.rb', line 38 def to_s "nil" end |
#visit ⇒ Object
41 42 43 |
# File 'lib/elparser.rb', line 41 def visit # do nothing end |