public bool Equals(AnalyzerAndOptions other)
            {
                if (ReferenceEquals(this, other))
                {
                    return(true);
                }

                return(other != null &&
                       Analyzer.Equals(other.Analyzer) &&
                       _analyzerOptions.Equals(other._analyzerOptions));
            }