if (ExpressionTools.stringIsNotEmpty(identificationVariable) &&
isValidProposal(identificationVariable, word)) {
// Resolve the identification variable
Resolver resolver = queryContext.getResolver(identificationVariable);
IEntity entity = queryContext.getProvider().getEntity(resolver.getType());
// The identification variable identifies an entity, add the extra information
if (entity != null) {
proposals.addRangeIdentificationVariable(identificationVariable, entity);
}