1 instantiation of RegexWriter
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\RegexWriter.cs (1)
60
using var writer = new
RegexWriter
(tree, stackalloc int[EmittedSize], stackalloc int[IntStackSize]);
6 references to RegexWriter
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Regex.cs (1)
254
RegexInterpreterCode code =
RegexWriter
.Write(tree);
System\Text\RegularExpressions\RegexInterpreter.cs (1)
14
private readonly RegexInterpreterCode _code =
RegexWriter
.Write(tree);
System\Text\RegularExpressions\RegexInterpreterCode.cs (2)
9
/// <summary>Contains the code, written by <see cref="
RegexWriter
"/>, for <see cref="RegexInterpreter"/> to evaluate a regular expression.</summary>
16
/// <summary>RegexOpcodes and arguments written by <see cref="
RegexWriter
"/>.</summary>
System\Text\RegularExpressions\RegexOpcode.cs (1)
6
/// <summary>Opcodes written by <see cref="
RegexWriter
"/> and used by <see cref="RegexInterpreter"/> to process a regex.</summary>
System\Text\RegularExpressions\RegexWriter.cs (1)
60
using
var
writer = new RegexWriter(tree, stackalloc int[EmittedSize], stackalloc int[IntStackSize]);