Skip to content

Commit

Permalink
Merge pull request #70 from dansiegel/dev/ds/nullable
Browse files Browse the repository at this point in the history
Adding missing nullable context
  • Loading branch information
dansiegel authored Dec 14, 2024
2 parents 0613e23 + 58d6360 commit 9cd453e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CodeGenHelpers/DelegateBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

namespace CodeGenHelpers;

#nullable enable
public sealed class DelegateBuilder : BuilderBase<DelegateBuilder>, IParameterized<DelegateBuilder>
{
private ParameterDocumentationComment? _xmlDoc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

namespace Microsoft.CodeAnalysis;

#nullable enable
public static class CodeHelpersGeneratorExtensions
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/CodeGenHelpers/Extensions/RoslynExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace AvantiPoint.CodeGenHelpers.Extensions;

#nullable enable
public static class RoslynExtensions
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/CodeGenHelpers/Extensions/SymbolExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace CodeGenHelpers.Extensions;

#nullable enable
public static class SymbolExtensions
{
public static string GetQualifiedTypeName(this ITypeSymbol typeSymbol)
Expand Down

0 comments on commit 9cd453e

Please # to comment.