Skip to content

Commit

Permalink
Make TextParser public (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH authored Jan 28, 2025
1 parent ad66a96 commit 2f19cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/System.Linq.Dynamic.Core/Tokenizer/TextParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace System.Linq.Dynamic.Core.Tokenizer;
/// <summary>
/// TextParser which can be used to parse a text into tokens.
/// </summary>
internal class TextParser
public class TextParser
{
private const char DefaultNumberDecimalSeparator = '.';
private static readonly char[] EscapeCharacters = ['\\', 'a', 'b', 'f', 'n', 'r', 't', 'v'];
Expand Down

0 comments on commit 2f19cc3

Please sign in to comment.