Replies: 2 comments
-
Interesting. It's an IEnumerable itself though so it should work 🤔 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Added some overloads in 0.17.3 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just updated from 0.6.131 to 0.14.6, and one thing I took notice to was that the following assertion stopped working:
Changing
AnalyzerResult.Diagnostics
frompublic sealed record AnalyzerResult(ImmutableArray<Diagnostic> Diagnostics, AnalyzerTelemetryInfo Statistics)
topublic sealed record AnalyzerResult(IEnumerable<Diagnostic> Diagnostics, AnalyzerTelemetryInfo Statistics);
fixed this.Would it be possible to add assertions similar/equivalent to those of IEnumerable for convenience sake?
Beta Was this translation helpful? Give feedback.
All reactions