Skip to content

Commit d254535

Browse files
MattM240499Matt Millward
andauthored
Use FQN in non default equality (#69)
Co-authored-by: Matt Millward <Matt.Millward@starlizard.com>
1 parent f945469 commit d254535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Generator.Equals/SymbolHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public record EnumerableArgumentsResult(ImmutableArray<ITypeSymbol>? Arguments)
8282

8383
public abstract record ArgumentsResult(ImmutableArray<ITypeSymbol>? Arguments)
8484
{
85-
public string Name => string.Join(", ", Arguments!.Value);
85+
public string Name => string.Join(", ", Arguments!.Value.Select(v => v.ToNullableFQF()));
8686
public bool HasValue => Arguments.HasValue;
8787

8888
public ImmutableArray<ITypeSymbol>? Value => Arguments;

0 commit comments

Comments
 (0)