From: Jean Privat Date: Tue, 16 Jul 2013 19:51:34 +0000 (-0400) Subject: nitc: globally skip annotation nodes X-Git-Tag: v0.6~5^2~4^2~2 X-Git-Url: http://nitlanguage.org nitc: globally skip annotation nodes Signed-off-by: Jean Privat --- diff --git a/src/abstracttool.nit b/src/abstracttool.nit index dc3187e..d76a3f8 100644 --- a/src/abstracttool.nit +++ b/src/abstracttool.nit @@ -129,3 +129,11 @@ redef class MMLocalClass file.write("end # {self}\n") end end + +redef class AAnnotations + # Shortcut annotations and skip them completely + redef fun visit_all(v) + do + # Do notning + end +end