We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f945469 commit d254535Copy full SHA for d254535
Generator.Equals/SymbolHelpers.cs
@@ -82,7 +82,7 @@ public record EnumerableArgumentsResult(ImmutableArray<ITypeSymbol>? Arguments)
82
83
public abstract record ArgumentsResult(ImmutableArray<ITypeSymbol>? Arguments)
84
{
85
- public string Name => string.Join(", ", Arguments!.Value);
+ public string Name => string.Join(", ", Arguments!.Value.Select(v => v.ToNullableFQF()));
86
public bool HasValue => Arguments.HasValue;
87
88
public ImmutableArray<ITypeSymbol>? Value => Arguments;
0 commit comments