TypeDeclaration type = getTypeDeclaration(workingUnit, bug.getPrimaryClass());
MethodDeclaration method = getMethodDeclaration(type, bug.getPrimaryMethod());
AST ast = rewrite.getAST();
SuperMethodInvocation superCall = createSuperMethodInvocation(rewrite, method);
ExpressionStatement statement = ast.newExpressionStatement(superCall);
Block methodBody = method.getBody();
ListRewrite listRewrite = rewrite.getListRewrite(methodBody, Block.STATEMENTS_PROPERTY);
if (isInsertFirst()) {
listRewrite.insertFirst(statement, null);