nitc :: APropdef :: visit_annotations
Return true if annotations were inlined.
# Factorize annotations visit for all APropdef.
#
# Return true if annotations were inlined.
fun visit_annotations(v: PrettyPrinterVisitor, n_annotations: nullable AAnnotations): Bool do
var res = v.can_inline(n_annotations)
if n_annotations != null then v.visit n_annotations
return res
end
src/pretty.nit:817,2--824,4