grammar: new production `array_items` to replace arg_list for literal arrays
[nit.git] / src / pretty.nit
index 75d9879..3b9f7ef 100644 (file)
@@ -2044,7 +2044,7 @@ end
 redef class AArrayExpr
        redef fun accept_pretty_printer(v) do
                v.consume "["
-               v.visit_list n_exprs.n_exprs
+               v.visit_list n_exprs
                v.consume "]"
        end
 end