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