Property definitions

nitc $ CloneVisitor :: defaultinit
private class CloneVisitor
	super Visitor

	redef fun visit(node)
	do
		# return when the node is an annotation to avoid the clonage
		if node isa AAnnotations then return
		node.do_cloneable(self)
		node.visit_all(self)
	end
end
src/test_astbuilder.nit:36,1--46,3