} else if (isMissingExpressionInConst(declaration)) {
results.addProblem(declaration,
GoBundle.message(
"error.missing.expr.for.const.declaration"),
ProblemHighlightType.GENERIC_ERROR,
new AddMissingExpressionFix(),
new RemoveRedundantConstFix()
);
} else if (isExtraExpressionInConst(declaration)) {
results.addProblem(declaration,
GoBundle.message(