Skip to content

Commit c91078f

Browse files
committed
Make sure error messages announce that they are, in fact, error messages. Addresses #16.
1 parent 634e911 commit c91078f

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

examples/shadow-tests.dx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
-- repeated vars in patterns not allowed
33
:p (x, x) = (1, 1); x
4-
> Variable redefined: x
4+
> Error: variable already defined: x
55

66
:p f (x, x) = x; f (1, 1)
7-
> Variable redefined: x
7+
> Error: variable already defined: x
88

99
-- TODO: re-enable if we choose to allow non-peer shadowing
1010
-- -- shouldn't cause error even though it shadows x elsewhere
@@ -21,7 +21,7 @@ arr = 10
2121
-- _ = 10 -- underscore shadows allowed
2222

2323
arr = 20
24-
> Variable redefined: arr
24+
> Error: variable already defined: arr
2525

2626
:p arr
2727
> 10

examples/type-tests.dx

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,4 @@ f x =
160160
> ^^
161161
:t x = 3
162162
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)

src/lib/DeShadow.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ freshBinderP :: BinderP a -> DeShadowCat (BinderP a)
119119
freshBinderP (v:>ann) = do
120120
shadowed <- looks $ (v `isin`) . fst . fst
121121
if shadowed && v /= Name "_" 0
122-
then throw RepeatedVarErr (" " ++ pprint v)
122+
then throw RepeatedVarErr (pprint v)
123123
else return ()
124124
v' <- looks $ rename v . snd
125125
extend (asFst (v@>v'), v'@>())
@@ -129,7 +129,7 @@ freshTBinder :: TBinder -> DeShadowCat TBinder
129129
freshTBinder (v:>k) = do
130130
shadowed <- looks $ (v `isin`) . snd . fst
131131
if shadowed && v /= Name "_" 0
132-
then throw RepeatedVarErr (" " ++ pprint v)
132+
then throw RepeatedVarErr (pprint v)
133133
else return ()
134134
v' <- looks $ rename v . snd
135135
extend (asSnd (v@>TypeVar v'), v'@>())

src/lib/JIT.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ compileBuiltin b ts = case b of
417417
FDiv -> compileBinop RealType (\x y -> L.FDiv noFastMathFlags x y [])
418418
FLT -> compileBinop BoolType (\x y -> L.FCmp L.OLT x y [])
419419
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'"
421421
BoolToInt -> compileUnop IntType (\x -> L.ZExt x longTy [])
422422
IntToReal -> compileUnop RealType (\x -> L.SIToFP x realTy [])
423423
FFICall _ name -> compileFFICall name ts

src/lib/PPrint.hs

+4-5
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,11 @@ instance Pretty ErrType where
4343
ParseErr -> "Parse error:"
4444
TypeErr -> "Type error:"
4545
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: "
4948
NotImplementedErr -> "Not implemented:"
50-
OtherErr -> "Error:"
51-
UpstreamErr -> "Upstream failure"
49+
CompilerErr -> "Compiler bug!"
50+
MiscErr -> "Error:"
5251

5352
instance Pretty Type where
5453
pretty t = prettyTyDepth 0 t

src/lib/Syntax.hs

+1-2
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ data ErrType = NoErr
301301
| RepeatedVarErr
302302
| CompilerErr
303303
| NotImplementedErr
304-
| UpstreamErr
305-
| OtherErr
304+
| MiscErr
306305
deriving (Show)
307306

308307
type Except a = Either Err a

0 commit comments

Comments
 (0)