Everything is now Data.Text instead of String

This commit is contained in:
vegowotenks 2025-02-21 18:17:46 +01:00
parent 753f429ec8
commit cbfd729795
18 changed files with 178 additions and 137 deletions

View file

@ -1,7 +1,12 @@
module Ubc.Parse.Syntax
(Transformer)
(Transformer, Token)
where
import Control.Monad.Reader (ReaderT)
import Data.Text ( Text )
import Ubc.Parse.Syntax.Config (Config)
type Transformer = ReaderT Config IO
type Token = Text