-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_errors.scm
More file actions
310 lines (239 loc) · 6.06 KB
/
test_errors.scm
File metadata and controls
310 lines (239 loc) · 6.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
; Static Errors in order of mishap_scm calls in compiler
; some lexical errors are missing.
(define (fred x)
#\funny):
Error: Unknown character name #\funny
(define (fred x)
'(x . y . z))
Error: Improperly formed dotted list . y .
Calling sequence:
(no Scheme functions in call-chain)
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(
Error: End of input encountered while reading sexpr
Culprits:
Calling sequence:
(no Scheme functions in call-chain)
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (fred x
(+ x t)))
Error: define statement "(define (fred x (+ x t)))" defines nothing
Calling sequence:
(no Scheme functions in call-chain)
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (fred x
(+ x t)) (+ x 23))
Error: trying to declare expression (+ x t) as variable
Calling sequence:
(no Scheme functions in call-chain)
In or around line 41: (lambda (x (+ x t)) (+ x 23))
While defining 'fred '
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (fred x)
(if (4 5) 6 7))
Error: cannot apply 4 as function
Calling sequence:
(no Scheme functions in call-chain)
In or around line 53: (4 5)
While defining 'fred '
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (fred x)
(cond
((< x 0) (+ x 3))
((= x 0))
)
)
Error: wrong form for expression sequence ()
Calling sequence:
(no Scheme functions in call-chain)
Compiling (<test> <value>) clause ending at line 67:
((= x 0))
In or around line 68: (cond ((< x 0) (+ x 3)) ((= x 0)))
While defining 'fred '
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (fred x)
(car (quote 45 56)))
Error: Wrong form for quoted expression "(quote 45 56)"
Calling sequence:
edit
In context: (car (quote 45 56))
While defining 'fred '
(define (fred x)
(car (quasiquote 45 56)))
Error: Wrong form for quoted expression "(quasiquote 45 56)"
Calling sequence:
edit
In context: (car (quasiquote 45 56))
While defining 'fred '
(define (fred x x)
(+ x 3)
)
Error: lambda expression has repeated argument "x " in "(x x)"
Calling sequence:
(no Scheme functions in call-chain)
Compiling argument list ending at line 101:
(x x)
In or around line 103: (lambda (x x) (+ x 3))
While defining 'fred '
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define fred)
??? this is WRONG - but should be OK with next version.
Error: too many forms in define statement
Culprits:
Calling sequence:
edit
While defining 'fred '
Error: too many forms in define statement:
(define fred (x) (+ x t))
Calling sequence:
(no Scheme functions in call-chain)
While defining 'fred '
This error report was prepared for Robin Popplestone
by Jeremiah Jolt, your compile-time helper.
(define (if x y z) (iff x y z))
Error: Attempting to redefine reserved word 'if
Calling sequence:
edit
While defining 'if '
(define 34 (+ 4 5))
Error: Need variable name or expression instead of "34" in definition
"(define 34 (+ 4 5))"
Calling sequence:
edit
While defining '34'
(define (fred x)
(if 1 2 3 4 ))
Error: Badly formed "if" expression (if 1 2 3 4)
Calling sequence:
edit
In context: (if 1 2 3 4)
While defining 'fred '
(define (mary x)
(case (+ 3 4) )
)
Error: case expr "(case (+ 3 4))" needs actual cases
Calling sequence:
edit
In context: (case (+ 3 4))
While defining 'mary '
(define (anne x y)
(case x
a)
)
(define (jane x y)
(cond 23)
)
Error: Wrong form for condition-value pair "23" in (cond ...) expression
(cond 23)
Calling sequence:
edit
Compiling: 23
In context: (cond 23)
While defining 'jane '
(define (fred x)
(else 34))
Error: "else" apparently used as a function in (else 34). Badly formed
cond or case?
Calling sequence:
edit
While defining 'fred '
(define (fred x)
(let ((y 4)))
)
Error: Missing binding or body in let expr (let ((y 4)))
Calling sequence:
edit
In context: (let ((y 4)))
While defining 'fred '
(define (fred x)
(let ((y 4) 3)
7
)
)
Error: Badly formed binding 3 in bindings ((y 4) 3)
In file: /users/users3/fac/pop/poplocal/local/Scheme/test_errors.scm
Calling sequence:
edit
In or around line 207: (let ((y 4) 3) 7)
While defining 'fred '
(define (fred x)
(let ((y 4) (3))
7
)
)
??? trap this one
Error: WORD NEEDED
Culprits: 3,
Calling sequence:
edit
In context: (let ((y 4) (3)) 7)
While defining 'fred '
(define (fred x)
(let bob (+ x y))
)
Error: Bindings bob should be a list
In file: /users/users3/fac/pop/poplocal/local/Scheme/test_errors.scm
Calling sequence:
edit
In or around line 233: (let bob (+ x y))
While defining 'fred '
(define (fred x)
(set! a b c)
)
)
Error: Wrong form ( (set! a b c) ) for "set!" statement
Calling sequence:
edit
Compiling: (set! a b c)
While defining 'fred '
(define (fred x)
(set! '(a b) c)
)
Error: Non-atom '(a b) cannot be bound by "set!" in (set! '(a b) c)
Calling sequence:
edit
Compiling: (set! '(a b) c)
While defining 'fred '
(define (fred x)
(set! if c)
)
(define (example expr val)
;; Allows you to run and check examples of code in-line
(let (
(val)( (eval expr (nearest-repl/environment)))
)
(newline)
(display "example: ")
(write expr)
(display " = ")
(write val)
(if (equal? val-actual val)
(begin (display ", ok!") (newline))
(begin
(display "
example failed, evaluating: ")
(write expr)
(display
"
value returned: ")
(write val-actual)
(display
"
value expected: ")
(write val)))))
;DYNAMIC CHECKS
(define (fred x)
(+ x 34)
)
(fred 'a)
(define (funny list)
(funny (cdr list))
)
(funny '(1 2 3 4))