purescript-0.7.5.1: src/Language/PureScript/Crash.hs
module Language.PureScript.Crash where
-- | Exit with an error message and a crash report link.
internalError :: String -> a
internalError =
error
. ("An internal error ocurred during compilation: " ++)
. (++ "\nPlease report this at https://github.com/purescript/purescript/issues")
. show