mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-06 01:48:38 +00:00
11 lines
291 B
Forth
11 lines
291 B
Forth
namespace WoofWare.NUnitTestRunner
|
|
|
|
open System.Runtime.ExceptionServices
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal Exception =
|
|
let reraiseWithOriginalStackTrace<'a> (e : exn) : 'a =
|
|
let edi = ExceptionDispatchInfo.Capture e
|
|
edi.Throw ()
|
|
failwith "unreachable"
|