2 writes to s_handler
Microsoft.CodeAnalysis.InteractiveHost (2)
src\Compilers\Core\Portable\InternalUtilities\FatalError.cs (2)
47s_handler = handler; 59s_handler = value;
11 references to s_handler
Microsoft.CodeAnalysis.InteractiveHost (11)
src\Compilers\Core\Portable\InternalUtilities\FatalError.cs (11)
44if (s_handler != handler) 46Debug.Assert(s_handler == null, "Handler already set"); 71copyHandlerTo(assembly, s_handler, nameof(s_handler)); 93/// The error is reported by calling <see cref="s_handler"/>. 104/// Use in an exception filter to report an error (by calling <see cref="s_handler"/>), unless the 120/// <para>Use in an exception filter to report an error (by calling <see cref="s_handler"/>), unless the 150/// Calls <see cref="s_handler"/> and doesn't pass the exception through (the method returns true). 178/// Use in an exception filter to report an error (by calling <see cref="s_handler"/>) and catch 195/// <para>Use in an exception filter to report an error (by calling <see cref="s_handler"/>) and 237ReportException(exception, severity, forceDump, s_handler);