Skip to content

Commit 90233e7

Browse files
kukimikAdam Wespiser
authored and
Adam Wespiser
committed
Remove redundant deriving of Typeable.
1 parent 7eccd47 commit 90233e7

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

docs/01_introduction.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ data LispVal
7373
| Fun IFunc
7474
| Lambda IFunc EnvCtx
7575
| Nil
76-
| Bool Bool deriving (Typeable)
76+
| Bool Bool deriving (Eq)
7777

7878
data IFunc = IFunc { fn :: [LispVal] -> Eval LispVal }
7979
```
@@ -95,7 +95,6 @@ To handle lexical scoping, the lambda function must enclose the environment pres
9595
Conceptually, the easiest way is to just bring the environment along with the function.
9696
For an implementation, the data constructor `Lambda` accepts `EnvCtx`, which is the lexical environment, as well as `IFunc`, which is a Haskell function.
9797
You'll notice it takes its arguments as a list of `LispVal`, then returns an object of type `Eval LispVal`. For more on `Eval`, read the next section.
98-
There's also a `deriving (Typeable)`, which is needed for error handling. More on that later!
9998

10099
## Evaluation Monad
101100
(from [LispVal.hs](https://github.com/write-you-a-scheme-v2/scheme/tree/master/src/LispVal.hs))
@@ -116,7 +115,6 @@ newtype Eval a = Eval { unEval :: ReaderT EnvCtx IO a }
116115
, Applicative
117116
, MonadReader EnvCtx
118117
, MonadIO)
119-
120118
```
121119

122120
For evaluation, we need to handle the context of a couple of things: the environment of variable/value bindings, exception handling, and IO.

src/LispVal.hs

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{-# LANGUAGE DeriveDataTypeable #-}
21
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
32

43
module LispVal (
@@ -10,7 +9,6 @@ module LispVal (
109
showVal,
1110
) where
1211

13-
import Data.Typeable (Typeable)
1412
import qualified Data.Text as T
1513
import qualified Data.Map as Map
1614

@@ -28,7 +26,7 @@ data EnvCtx = EnvCtx
2826
} deriving (Eq)
2927

3028
newtype Eval a = Eval { unEval :: ReaderT EnvCtx IO a }
31-
deriving (Monad, Functor, Applicative, MonadReader EnvCtx, MonadIO)
29+
deriving (Monad, Functor, Applicative, MonadReader EnvCtx, MonadIO)
3230

3331
data LispVal
3432
= Atom T.Text
@@ -39,13 +37,12 @@ data LispVal
3937
| Lambda IFunc EnvCtx
4038
| Nil
4139
| Bool Bool
42-
deriving (Typeable,Eq)
40+
deriving (Eq)
4341

4442
instance Show LispVal where
4543
show = T.unpack . showVal
4644

4745
data IFunc = IFunc { fn :: [LispVal] -> Eval LispVal }
48-
deriving (Typeable)
4946

5047
instance Eq IFunc where
5148
(==) _ _ = False
@@ -79,7 +76,6 @@ data LispException
7976
| Default LispVal
8077
| PError String -- from show anyway
8178
| IOError T.Text
82-
deriving (Typeable)
8379

8480
instance Exception LispException
8581

0 commit comments

Comments
 (0)