Property definitions

nitc $ AnnotationPhaseVisitor :: defaultinit
# Collect all annotation
private class AnnotationPhaseVisitor
	super Visitor

	# The collected annotations
	var annotations = new Array[AAnnotation]

	redef fun visit(n)
	do
		n.visit_all(self)
		if n isa AAnnotation then annotations.add n
	end
end
src/phase.nit:193,1--205,3