module RuboCop::AST::Sexp

def s(type, *children)

Creates a {Node} with type `type` and children `children`.
def s(type, *children)
  Node.new(type, children)
end