aboutsummaryrefslogtreecommitdiff
path: root/src/Error
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-23 13:33:31 +0100
committerAkshay <[email protected]>2020-10-23 13:33:31 +0100
commit494078074e5f620f11f72e48d0fc44cff73faaf2 (patch)
tree25aea03ceaae5fc3010e1894ae74d6eee0259cb5 /src/Error
parentf68c7f7a140127320f9dadc57a3d2a485b86d3df (diff)
refactor internal datatypes to Base
- avoids cyclic module dependencies - cleaner exports to Main module
Diffstat (limited to 'src/Error')
-rw-r--r--src/Error/Base.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Error/Base.hs b/src/Error/Base.hs
index 747904a..008a2fc 100644
--- a/src/Error/Base.hs
+++ b/src/Error/Base.hs
@@ -3,8 +3,8 @@ module Error.Base ( LispError (..)
3 , unwrap 3 , unwrap
4 ) where 4 ) where
5 5
6import Base (Expr (..))
6import Control.Monad.Except 7import Control.Monad.Except
7import Parser
8import Text.Parsec 8import Text.Parsec
9import Text.Parsec.Error 9import Text.Parsec.Error
10import Text.ParserCombinators.Parsec 10import Text.ParserCombinators.Parsec