IEnumerable <GuidObject> IGlyphTextMarkerHandler.GetContextMenuObjects(IGlyphTextMarkerHandlerContext context, IGlyphTextMarker marker, Point marginRelativePoint)
        {
            var ilbp = GlyphTextMarkerHelper.ToILCodeBreakpoint(marker);

            yield return(new GuidObject(MenuConstants.GUIDOBJ_BREAKPOINT_GUID, ilbp));
        }
        GlyphTextMarkerToolTip IGlyphTextMarkerHandler.GetToolTipContent(IGlyphTextMarkerHandlerContext context, IGlyphTextMarker marker)
        {
            var ilbp = GlyphTextMarkerHelper.ToILCodeBreakpoint(marker);

            return(new GlyphTextMarkerToolTip(GetToolTipContent(ilbp, context.TextView)));
        }