module RuboCop::AST::Sexp

def s(type, *children)

Creates a {Node} with type `type` and children `children`.
def s(type, *children)
  klass = Builder::NODE_MAP[type] || Node
  klass.new(type, children)
end