Package ro.redeul.google.go.inspection

Source Code of ro.redeul.google.go.inspection.UnusedVariableInspection

package ro.redeul.google.go.inspection;

import org.jetbrains.annotations.NotNull;
import ro.redeul.google.go.findUsages.GoVariableUsageStatVisitor2;
import ro.redeul.google.go.lang.psi.GoFile;

public class UnusedVariableInspection extends AbstractWholeGoFileInspection {

    @Override
    protected void doCheckFile(@NotNull GoFile file, @NotNull InspectionResult result) {
        new GoVariableUsageStatVisitor2(result).visitFile(file);
    }
}
TOP

Related Classes of ro.redeul.google.go.inspection.UnusedVariableInspection

TOP
Copyright © 2018 www.massapi.com. 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.