dhall-lex-0.1.0.0: src/Language/Dhall/Lexer.hs
-- | This module contains a dhall lexer.
module Language.Dhall.Lexer ( -- * User functions
lexDhall
-- * Types
, Token
, AlexPosn (..)
, TokenType (..)
, Keyword (..)
, Operator (..)
, Ann (..)
-- * Internal
, step
, Alex (..)
, AlexState (..)
) where
import Language.Dhall.Lexer.Mod
import Language.Dhall.Lexer.Types