File tree Expand file tree Collapse file tree
IDisposableAnalyzers/CodeFixes/Helpers
ValidCode/Recursion/InstanceMapRepro Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ internal static ArgumentListSyntax Arguments(ExpressionSyntax expression)
302302 return SyntaxFactory . ArgumentList ( SyntaxFactory . SingletonSeparatedList ( SyntaxFactory . Argument ( expression ) ) ) ;
303303 }
304304
305- internal struct MemberAccessContext
305+ internal readonly struct MemberAccessContext
306306 {
307307 internal readonly ExpressionSyntax ? NotNull ;
308308 internal readonly ExpressionSyntax ? MaybeNull ;
Original file line number Diff line number Diff line change 66/// <summary>
77/// Similar to Nullable{T} but for any type.
88/// </summary>
9- public struct Maybe < T > : IEquatable < Maybe < T > >
9+ public readonly struct Maybe < T > : IEquatable < Maybe < T > >
1010{
1111 private readonly T value ;
1212
You can’t perform that action at this time.
0 commit comments