/* */
/* */ public void atArrayInit(ArrayInit init) throws CompileError {
/* 180 */ ASTList list = init;
/* 181 */ while (list != null) {
/* 182 */ ASTree h = list.head();
/* 183 */ list = list.tail();
/* 184 */ if (h != null)
/* 185 */ h.accept(this);
/* */ }
/* */ }
/* */