class RedParse::Nodes::ParenedNode

Public Class Methods

new(*args) click to toggle source
# File lib/redparse/babynodes.rb, line 138
def initialize(*args)
  @data=[args[1]]
end

Public Instance Methods

parsetree() click to toggle source
# File lib/redparse/babynodes.rb, line 146
def parsetree
  @data.first.parsetree
end
to_lisp() click to toggle source
# File lib/redparse/babynodes.rb, line 142
def to_lisp
  @data.first.to_lisp
end