We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c5c04 commit b9219ddCopy full SHA for b9219dd
src/Domain/HydraScript.Domain.FrontEnd/Lexer/Token.cs
@@ -16,7 +16,7 @@ public override string ToString()
16
return $"{Type} {Segment}: {displayValue}";
17
}
18
19
- [GeneratedRegex("\"")]
+ [GeneratedRegex("\"", RegexOptions.Compiled)]
20
private static partial Regex Quotes();
21
22
tests/HydraScript.UnitTests/Domain/FrontEnd/DummyContainer.cs
@@ -5,6 +5,6 @@ namespace HydraScript.UnitTests.Domain.FrontEnd;
5
6
public partial class DummyContainer : IGeneratedRegexContainer
7
{
8
- [GeneratedRegex(TokenInput.Pattern)]
+ [GeneratedRegex(TokenInput.Pattern, RegexOptions.Compiled)]
9
public static partial Regex Regex { get; }
10
0 commit comments