-- Copyright (c) 2020, Shayne Fletcher. All rights reserved. -- SPDX-License-Identifier: BSD-3-Clause. module Language.Haskell.GhclibParserEx.Outputable (unsafePrettyPrint) where import Outputable unsafePrettyPrint :: (Outputable.Outputable a) => a -> String unsafePrettyPrint :: a -> String unsafePrettyPrint = SDoc -> String Outputable.showSDocUnsafe (SDoc -> String) -> (a -> SDoc) -> a -> String forall b c a. (b -> c) -> (a -> b) -> a -> c . a -> SDoc forall a. Outputable a => a -> SDoc Outputable.ppr