6 references to Nullmark
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\RegexInterpreter.cs (2)
422case RegexOpcode.Nullmark: 429case RegexOpcode.Nullmark | RegexOpcode.Backtracking:
System\Text\RegularExpressions\RegexInterpreterCode.cs (1)
72case RegexOpcode.Nullmark:
System\Text\RegularExpressions\RegexOpcode.cs (2)
132/// When executed, this opcode pops a previously saved input mark (from a <see cref="Setmark"/> or <see cref="Nullmark"/>) 211/// <see cref="Nullmark"/>). It is used in lookaround constructs to revert the input position to the point where the lookaround began.
System\Text\RegularExpressions\RegexWriter.cs (1)
317Emit(node.M == 0 ? RegexOpcode.Nullmark : RegexOpcode.Setmark);