@Override
public HighlightRange handle(FieldMember element) {
// Because of the transformation that we do in com.salesforce.ide.ui.editors.apex.outline.ClassMemberFilter
// We are guaranteed that there is only ever one decls in the FieldMember, so we can use get(0)
RealLoc loc = (RealLoc) element.variableDecls.decls.get(0).name.loc;
return highlightTokenInEditorIfPossible(loc);
}