1 write to s_currentError
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\CoreClr\SharedConsole.cs (1)
44
s_currentError
= new AsyncLocal<StringWriter>();
4 references to s_currentError
Microsoft.CodeAnalysis.Test.Utilities (4)
Platform\CoreClr\SharedConsole.cs (4)
60
var savedError =
s_currentError
.Value;
65
s_currentError
.Value = errorOutputWriter;
71
s_currentError
.Value = savedError;
85
public override TextWriter Underlying =>
s_currentError
.Value ?? s_savedConsoleError;