boolean possibleToInline = false;
if (stmts.isEmpty()) {
tryInlineEmptyMethodCall(x, ctx);
possibleToInline = true;
} else if (stmts.size() == 1) {
JStatement stmt = (JStatement) stmts.get(0);
if (stmt instanceof JReturnStatement) {
possibleToInline = tryInlineExpression(x, ctx,
((JReturnStatement) stmt).getExpr());
} else if (stmt instanceof JExpressionStatement) {
possibleToInline = tryInlineExpression(x, ctx,