trimmedSourceValue.equals(trimmedDestinationValue))
{
// 'source' and 'destination' values cannot be the same
// TODO "a.b" and "a . b" won't be detected as the same.
// Should we compare tokens instead?
ICompilerProblem problem = new MXMLSameBindingSourceAndDestinationProblem(tag);
builder.addProblem(problem);
markInvalidForCodeGen();
}
}