124012411242124312441245124612471248
default: throw new InternalCompilerException("Unexpected postfix operator"); } JPostfixOperation postOp = new JPostfixOperation(info, op, dispProcessExpression(x.lhs)); return postOp; }
1190119111921193119411951196119711981199
default: throw new InternalCompilerException("Unexpected postfix operator"); } JExpression lhs = pop(x.lhs); push(new JPostfixOperation(info, op, lhs)); } catch (Throwable e) { throw translateException(x, e); } }
265266267268269270271272273
return false; } @Override public boolean visit(JPostfixOperation x, Context ctx) { expression = new JPostfixOperation(x.getSourceInfo(), x.getOp(), cloneExpression(x.getArg())); return false; }
1208120912101211121212131214121512161217
282283284285286287288289
969970971972973974975976977
default: throw new InternalCompilerException("Unexpected postfix operator"); } JPostfixOperation postOp = new JPostfixOperation(program, info, op, dispProcessExpression(x.lhs)); return postOp; }
117111721173117411751176117711781179