Skip to content

Commit 2f19cc3

Browse files
authored
Make TextParser public (#887)
1 parent ad66a96 commit 2f19cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/System.Linq.Dynamic.Core/Tokenizer/TextParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace System.Linq.Dynamic.Core.Tokenizer;
77
/// <summary>
88
/// TextParser which can be used to parse a text into tokens.
99
/// </summary>
10-
internal class TextParser
10+
public class TextParser
1111
{
1212
private const char DefaultNumberDecimalSeparator = '.';
1313
private static readonly char[] EscapeCharacters = ['\\', 'a', 'b', 'f', 'n', 'r', 't', 'v'];

0 commit comments

Comments
 (0)