class IRB::SLex::Node

def initialize(preproc = nil, postproc = nil)

if postproc is non-nil, this node is a real node.
if postproc is nil, this node is an abstract node.
def initialize(preproc = nil, postproc = nil)
  @Tree = {}
  @preproc = preproc
  @postproc = postproc
end