11 references to FatalError
InteractiveHost32 (1)
src\Interactive\HostProcess\InteractiveHostEntryPoint.cs (1)
19
FatalError
.SetHandlers(FailFast.Handler, nonFatalHandler: null);
InteractiveHost64 (1)
src\Interactive\HostProcess\InteractiveHostEntryPoint.cs (1)
19
FatalError
.SetHandlers(FailFast.Handler, nonFatalHandler: null);
Microsoft.CodeAnalysis.InteractiveHost (9)
Interactive\Core\InteractiveHost.cs (2)
261
catch (Exception e) when (
FatalError
.ReportAndPropagate(e))
348
catch (Exception e) when (
FatalError
.ReportAndPropagate(e))
Interactive\Core\InteractiveHost.LazyRemoteService.cs (1)
126
catch (Exception e) when (
FatalError
.ReportAndPropagateUnlessCanceled(e))
Interactive\Core\InteractiveHost.RemoteService.cs (1)
102
catch (Exception e) when (
FatalError
.ReportAndPropagate(e))
src\Dependencies\Contracts\ErrorReporting\FailFast.cs (2)
19
/// A pre-created delegate to assign to <see cref="
FatalError
.ErrorReporterHandler" /> if needed.
21
internal static readonly
FatalError
.ErrorReporterHandler Handler = static (e, _, _) => OnFatalException(e);
src\Dependencies\Contracts\ErrorReporting\FatalError.cs (1)
81
var targetType = assembly.GetType(typeof(
FatalError
).FullName!, throwOnError: true)!;
src\Dependencies\Threading\AsyncBatchingWorkQueue`2.cs (1)
278
catch (Exception ex) when (
FatalError
.ReportAndPropagateUnlessCanceled(ex, ErrorSeverity.Critical))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\AsyncLazy`1.cs (1)
448
catch (Exception e) when (
FatalError
.ReportAndPropagate(e))