/* */ public void atFieldDecl(FieldDecl field) throws CompileError {
/* 251 */ field.getInit().accept(this);
/* */ }
/* */
/* */ public void atMethodDecl(MethodDecl method) throws CompileError {
/* 255 */ ASTList mods = method.getModifiers();
/* 256 */ setMaxLocals(1);
/* 257 */ while (mods != null) {
/* 258 */ Keyword k = (Keyword)mods.head();
/* 259 */ mods = mods.tail();
/* 260 */ if (k.get() == 335) {
/* 261 */ setMaxLocals(0);
/* 262 */ this.inStaticMethod = true;
/* */ }
/* */ }
/* */
/* 266 */ ASTList params = method.getParams();
/* 267 */ while (params != null) {
/* 268 */ atDeclarator((Declarator)params.head());
/* 269 */ params = params.tail();
/* */ }
/* */
/* 272 */ Stmnt s = method.getBody();
/* 273 */ atMethodBody(s, method.isConstructor(), method.getReturn().getType() == 344);
/* */ }