Package ro.redeul.google.go.inspection.fix

Examples of ro.redeul.google.go.inspection.fix.AddReturnStmtFix


        hasResultButNoReturnAtTheEnd(result, function);
    }

    private static void hasResultButNoReturnAtTheEnd(InspectionResult result, GoFunctionDeclaration function) {
        if (hasResult(function) && hasBody(function) && !hasReturnAtTheEnd(function)) {
            LocalQuickFix fix1 = new AddReturnStmtFix(function);
            LocalQuickFix fix2 = new RemoveFunctionResultFix(function);
            PsiElement element = function.getBlock().getLastChild();
            result.addProblem(element, GoBundle.message("error.no.return.found"), fix1, fix2);
        }
    }
View Full Code Here

TOP

Related Classes of ro.redeul.google.go.inspection.fix.AddReturnStmtFix

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.