// Config vars don't care about MultiDefinitionType.MANY vs. AMBIGUOUS
// and it's not possible for them to shadow params, so we only have to check if
// the multi type is not NONE
if (SemanticUtils.getMultiDefinitionType(constDef, backingProject) != SemanticUtils.MultiDefinitionType.NONE)
{
addProblem(new ConflictingNameInNamespaceProblem(node, constDef.getBaseName(), node.getNamespace()));
return false;
}
return true;
}