Skip to content

Commit

Permalink
feat: add leading underscores to typeParameter name (#1641)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyMakkison committed Feb 17, 2024
1 parent c9395ac commit b7c22ca
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion InterfaceStubGenerator.Shared/InterfaceStubGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class InterfaceStubGeneratorV2 : IIncrementalGenerator
public class InterfaceStubGenerator : ISourceGenerator
#endif
{
private const string TypeParameterVariableName = "_typeParameters";
private const string TypeParameterVariableName = "______typeParameters";

#pragma warning disable RS2008 // Enable analyzer release tracking
static readonly DiagnosticDescriptor InvalidRefitMember =
Expand Down
Loading

0 comments on commit b7c22ca

Please sign in to comment.