File tree 6 files changed +12
-14
lines changed
6 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 1
1
2
2
-- repeated vars in patterns not allowed
3
3
:p (x, x) = (1, 1); x
4
- > Variable redefined : x
4
+ > Error: variable already defined : x
5
5
6
6
:p f (x, x) = x; f (1, 1)
7
- > Variable redefined : x
7
+ > Error: variable already defined : x
8
8
9
9
-- TODO: re-enable if we choose to allow non-peer shadowing
10
10
-- -- shouldn't cause error even though it shadows x elsewhere
@@ -21,7 +21,7 @@ arr = 10
21
21
-- _ = 10 -- underscore shadows allowed
22
22
23
23
arr = 20
24
- > Variable redefined : arr
24
+ > Error: variable already defined : arr
25
25
26
26
:p arr
27
27
> 10
Original file line number Diff line number Diff line change @@ -160,4 +160,4 @@ f x =
160
160
> ^^
161
161
:t x = 3
162
162
for i::x. 0
163
- > Variable not in scope:type variable "x" (a term variable of the same name is in scope)
163
+ > Error: variable not in scope: type variable "x" (a term variable of the same name is in scope)
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ freshBinderP :: BinderP a -> DeShadowCat (BinderP a)
119
119
freshBinderP (v:> ann) = do
120
120
shadowed <- looks $ (v `isin` ) . fst . fst
121
121
if shadowed && v /= Name " _" 0
122
- then throw RepeatedVarErr (" " ++ pprint v)
122
+ then throw RepeatedVarErr (pprint v)
123
123
else return ()
124
124
v' <- looks $ rename v . snd
125
125
extend (asFst (v@> v'), v'@> () )
@@ -129,7 +129,7 @@ freshTBinder :: TBinder -> DeShadowCat TBinder
129
129
freshTBinder (v:> k) = do
130
130
shadowed <- looks $ (v `isin` ) . snd . fst
131
131
if shadowed && v /= Name " _" 0
132
- then throw RepeatedVarErr (" " ++ pprint v)
132
+ then throw RepeatedVarErr (pprint v)
133
133
else return ()
134
134
v' <- looks $ rename v . snd
135
135
extend (asSnd (v@> TypeVar v'), v'@> () )
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ compileBuiltin b ts = case b of
417
417
FDiv -> compileBinop RealType (\ x y -> L. FDiv noFastMathFlags x y [] )
418
418
FLT -> compileBinop BoolType (\ x y -> L. FCmp L. OLT x y [] )
419
419
FGT -> compileBinop BoolType (\ x y -> L. FCmp L. OGT x y [] )
420
- Todo -> const $ throw OtherErr " Can't compile 'todo'"
420
+ Todo -> const $ throw MiscErr " Can't compile 'todo'"
421
421
BoolToInt -> compileUnop IntType (\ x -> L. ZExt x longTy [] )
422
422
IntToReal -> compileUnop RealType (\ x -> L. SIToFP x realTy [] )
423
423
FFICall _ name -> compileFFICall name ts
Original file line number Diff line number Diff line change @@ -43,12 +43,11 @@ instance Pretty ErrType where
43
43
ParseErr -> " Parse error:"
44
44
TypeErr -> " Type error:"
45
45
LinErr -> " Linearity error:"
46
- CompilerErr -> " Compiler bug!"
47
- UnboundVarErr -> " Variable not in scope:"
48
- RepeatedVarErr -> " Variable redefined:"
46
+ UnboundVarErr -> " Error: variable not in scope: "
47
+ RepeatedVarErr -> " Error: variable already defined: "
49
48
NotImplementedErr -> " Not implemented:"
50
- OtherErr -> " Error: "
51
- UpstreamErr -> " Upstream failure "
49
+ CompilerErr -> " Compiler bug! "
50
+ MiscErr -> " Error: "
52
51
53
52
instance Pretty Type where
54
53
pretty t = prettyTyDepth 0 t
Original file line number Diff line number Diff line change @@ -301,8 +301,7 @@ data ErrType = NoErr
301
301
| RepeatedVarErr
302
302
| CompilerErr
303
303
| NotImplementedErr
304
- | UpstreamErr
305
- | OtherErr
304
+ | MiscErr
306
305
deriving (Show )
307
306
308
307
type Except a = Either Err a
You can’t perform that action at this time.
0 commit comments