public void interpolatedNamespaceReferenceSelector(MixinReference reference) {
addError(reference, "Interpolation is not allowed inside namespace references.");
}
public void wrongMemberBroughtIntoBody(ASTCssNode reference, ASTCssNode member, ASTCssNode body) {
ASTCssNode parent = body.getParent()==null? body : body.getParent();
addError(reference, "The reference brought " + PrintUtils.toTypeName(member) + " from " + PrintUtils.toLocation(member) + " into " + PrintUtils.toTypeName(parent) + " which started at " + PrintUtils.toLocation(body) + ". Compilation produced an incorrect CSS.");
}