Skip to content

Commit 9fb5d15

Browse files
committed
test fix
1 parent 7054fea commit 9fb5d15

File tree

9 files changed

+8
-13
lines changed

9 files changed

+8
-13
lines changed

src/Linqraft.Core/AnalyzerHelpers/CaptureHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Linqraft.Core.AnalyzerHelpers;
1111
/// <summary>
1212
/// Helper methods for capture parameter detection and variable capture analysis
1313
/// </summary>
14-
internal static class CaptureHelper
14+
public static class CaptureHelper
1515
{
1616
/// <summary>
1717
/// Extracts captured variable names from a SelectExpr invocation's capture argument.

src/Linqraft.Core/AnalyzerHelpers/UsingDirectiveHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Linqraft.Core.AnalyzerHelpers;
99
/// <summary>
1010
/// Helper methods for adding using directives in code fixes
1111
/// </summary>
12-
internal static class UsingDirectiveHelper
12+
public static class UsingDirectiveHelper
1313
{
1414
/// <summary>
1515
/// Adds a using directive for the namespace containing the specified type symbol,

src/Linqraft.Core/Linqraft.Core.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,5 @@
1313
<AssemblyAttribute Include="Linqraft.Core.BuildDateTime">
1414
<_Parameter1>$([System.DateTime]::UtcNow.Ticks)</_Parameter1>
1515
</AssemblyAttribute>
16-
<InternalsVisibleTo Include="Linqraft.SourceGenerator" />
17-
<InternalsVisibleTo Include="Linqraft.Analyzer" />
18-
<InternalsVisibleTo Include="Linqraft.Tests" />
19-
<InternalsVisibleTo Include="Linqraft.Analyzer.Tests" />
20-
<InternalsVisibleTo Include="Linqraft.Playground" />
2116
</ItemGroup>
2217
</Project>

src/Linqraft.Core/SyntaxHelpers/ArgumentListHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Linqraft.Core.SyntaxHelpers;
99
/// <summary>
1010
/// Helper methods for manipulating ArgumentList while preserving trivia and structure
1111
/// </summary>
12-
internal static class ArgumentListHelper
12+
public static class ArgumentListHelper
1313
{
1414
/// <summary>
1515
/// Adds a new argument to an argument list while preserving all trivia and formatting

src/Linqraft.Core/SyntaxHelpers/ExpressionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Linqraft.Core.SyntaxHelpers;
66
/// <summary>
77
/// Helper methods for working with expressions
88
/// </summary>
9-
internal static class ExpressionHelper
9+
public static class ExpressionHelper
1010
{
1111
/// <summary>
1212
/// Gets the property name from an expression

src/Linqraft.Core/SyntaxHelpers/LambdaHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Linqraft.Core.SyntaxHelpers;
77
/// <summary>
88
/// Helper methods for working with lambda expressions
99
/// </summary>
10-
internal static class LambdaHelper
10+
public static class LambdaHelper
1111
{
1212
/// <summary>
1313
/// Gets the first parameter name from a lambda expression

src/Linqraft.Core/SyntaxHelpers/NullConditionalHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Linqraft.Core.SyntaxHelpers;
99
/// <summary>
1010
/// Helper methods for working with null-conditional operators and null checks
1111
/// </summary>
12-
internal static class NullConditionalHelper
12+
public static class NullConditionalHelper
1313
{
1414
/// <summary>
1515
/// Checks if an expression contains a null-conditional access operator (?.) at the top level

src/Linqraft.Core/SyntaxHelpers/ObjectCreationHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace Linqraft.Core.SyntaxHelpers;
4040
/// var anonymousObject = ObjectCreationHelper.ConvertToAnonymousTypeRecursive(objectCreation);
4141
/// </code>
4242
/// </remarks>
43-
internal static class ObjectCreationHelper
43+
public static class ObjectCreationHelper
4444
{
4545
/// <summary>
4646
/// Converts an anonymous object creation to a named object creation, preserving all trivia and structure.

src/Linqraft.Core/SyntaxHelpers/TriviaHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Linqraft.Core.SyntaxHelpers;
77
/// <summary>
88
/// Helper methods for working with syntax trivia (whitespace, comments, etc.)
99
/// </summary>
10-
internal static class TriviaHelper
10+
public static class TriviaHelper
1111
{
1212
/// <summary>
1313
/// Preserves both leading and trailing trivia from the original node to the updated node

0 commit comments

Comments
 (0)