if (!contentInfo.getType().equals(DRLContentTypeEnum.RULE_LHS_LINE))
return null;
String response = VariableBinding.execute(contentInfo, offset-contentInfo.getOffset());
if (response.equals(contentInfo.getContent()))
return null;
return new ReplaceAssistantOption("assign to variable", response, contentInfo.getOffset(), contentInfo.getContentLength(), offset);
}