6789101112
public class UnusedVariableInspection extends AbstractWholeGoFileInspection { @Override protected void doCheckFile(@NotNull GoFile file, @NotNull InspectionResult result) { new GoVariableUsageStatVisitor2(result).visitFile(file); }