class RedParse::ListInNode::CallWithBlockNode

class ObjectNode<ValueNode
  def initialize
    super
  end
  def to_lisp
    "Object"
  end

  def parsetree(o)
    :Object
  end
end

end

Public Class Methods

new(call,block) click to toggle source
Calls superclass method RedParse::ListInNode::Node::new
# File lib/redparse/node.rb, line 3520
def initialize(call,block)
  KeywordCall===call and extend KeywordCall
  super
end

Public Instance Methods

to_lisp() click to toggle source
# File lib/redparse/node.rb, line 3525
def to_lisp
  @data.first.to_lisp.chomp!(")")+" #{@data.last.to_lisp})"
end