protected override Expression VisitGoto(GotoExpression node)
        {
            var other = (GotoExpression)_current;

            _eq &= node.IsEqualTo(other, _ => _.Kind, _ => _.Target);
            return(_eq ? base.VisitGoto(node) : node);
        }