diff options
author | Akshay <[email protected]> | 2020-10-23 13:33:31 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-10-23 13:33:31 +0100 |
commit | 494078074e5f620f11f72e48d0fc44cff73faaf2 (patch) | |
tree | 25aea03ceaae5fc3010e1894ae74d6eee0259cb5 /src/Error | |
parent | f68c7f7a140127320f9dadc57a3d2a485b86d3df (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.hs | 2 |
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 | ||
6 | import Base (Expr (..)) | ||
6 | import Control.Monad.Except | 7 | import Control.Monad.Except |
7 | import Parser | ||
8 | import Text.Parsec | 8 | import Text.Parsec |
9 | import Text.Parsec.Error | 9 | import Text.Parsec.Error |
10 | import Text.ParserCombinators.Parsec | 10 | import Text.ParserCombinators.Parsec |