/* 83 */ super.atFieldAssign(expr, op, left, right);
/* */ }
/* */ }
/* */
/* */ public void atCastExpr(CastExpr expr) throws CompileError {
/* 87 */ ASTList classname = expr.getClassName();
/* 88 */ if ((classname != null) && (expr.getArrayDim() == 0)) {
/* 89 */ ASTree p = classname.head();
/* 90 */ if (((p instanceof Symbol)) && (classname.tail() == null)) {
/* 91 */ String typename = ((Symbol)p).get();
/* 92 */ if (typename.equals(this.codeGen.returnCastName)) {
/* 93 */ atCastToRtype(expr);
/* 94 */ return;
/* */ }