module Language.Parser.Ptera.Prelude.Alias (
    StringLit,
    debugTrace,
    debugTraceShow,
    debugTraceShowId,
) where

import qualified Debug.Trace as Debug
import qualified Prelude

type StringLit = Prelude.String

debugTrace :: StringLit -> a -> a
debugTrace :: forall a. StringLit -> a -> a
debugTrace = forall a. StringLit -> a -> a
Debug.trace

debugTraceShow :: Prelude.Show a => a -> b -> b
debugTraceShow :: forall a b. Show a => a -> b -> b
debugTraceShow = forall a b. Show a => a -> b -> b
Debug.traceShow

debugTraceShowId :: Prelude.Show a => a -> a
debugTraceShowId :: forall a. Show a => a -> a
debugTraceShowId = forall a. Show a => a -> a
Debug.traceShowId