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 :: StringLit -> a -> a
debugTrace = StringLit -> a -> a
forall a. StringLit -> a -> a
Debug.trace

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

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