--------------------------------------------------------------------------------- -- | -- Copyright : (c) Edward Kmett 2017-2018 -- License : BSD-2-Clause OR Apache-2.0 -- Maintainer: Edward Kmett -- Stability : experimental -- Portability: non-portable -- --------------------------------------------------------------------------------- module Syntax.FromText ( FromText(..) ) where import Data.Text class FromText a where fromText :: Text -> a instance FromText Text where fromText = id