1 write to _anyChar
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexBuilder.cs (1)
130
_anyChar
= SymbolicRegexNode<TSet>.CreateTrue(this);
3 references to _anyChar
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\SymbolicRegexBuilder.cs (3)
131
_anyStar = SymbolicRegexNode<TSet>.CreateLoop(this,
_anyChar
, 0, int.MaxValue, isLazy: false);
132
_anyStarLazy = SymbolicRegexNode<TSet>.CreateLoop(this,
_anyChar
, 0, int.MaxValue, isLazy: true);
136
_singletonCache[_solver.Full] =
_anyChar
;