This repository was archived by the owner on Nov 1, 2018. It is now read-only.
forked from haskell-lisp/yale-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser-errors.scm
74 lines (58 loc) · 2.28 KB
/
parser-errors.scm
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
;;; This contains parser error handlers. They, in turn, call the
;;; system error handlers.
(define (lexer-error id . msgs)
(parser-error/common id 'recoverable msgs '#t)
`#\?)
(define (parser-error id . msgs)
(parser-error/common id 'phase msgs '#f)
(if (null? *layout-stack*)
(abort-compilation)
(recover-to-next-decl *token-stream*)))
(define (parser-error/recoverable id . args)
(parser-error/common id 'recoverable args '#f))
(define (parser-error/common id type msgs in-lexer?)
(let ((place
(if in-lexer?
(list "Error occured at in file ~A at line ~A, column ~A."
*current-file* *current-line* *current-col*)
(list "Error occured at in file ~A at line ~A, token ~A."
*current-file* *current-line*
(cond ((null? *token-args*)
*token*)
((null? (cdr *token-args*))
(car *token-args*))
(else *token-args*)))))) ; could be better
(haskell-error id type (list place msgs))))
(define (recover-to-next-decl tokens)
(cond ((null? tokens)
(abort-compilation))
((eq? (car (car tokens)) 'line)
(search-layout-stack *layout-stack* tokens (caddr (car tokens))))
(else (recover-to-next-decl (cdr tokens)))))
(define (search-layout-stack layouts tokens column)
(cond ((null? layouts)
(abort-compilation))
((> column (layout-col (car layouts)))
(recover-to-next-decl (cdr tokens)))
((= column (layout-col (car layouts)))
(setf *current-col* column)
(setf *current-line* (cadr (car tokens)))
(setf *token-stream* (cdr tokens))
(advance-token) ; loads up *token*
;; *** layout-recovery-fn is not defined anywhere!
(funcall (layout-recovery-fn (car layouts))))
(else
(setf *layout-stack* (cdr *layout-stack*))
(search-layout-stack (cdr layouts) tokens column))))
;;; Here are some very commonly used signalling functions.
;;; Other (more specific) signalling functions are defined near
;;; the places where they are called.
;;; This is used when a particular token isn't found.
(define (signal-missing-token what where)
(parser-error 'missing-token
"Missing ~a in ~a." what where))
;;; This is used to signal more complicated parse failures involving
;;; failure to match a nonterminal.
(define (signal-invalid-syntax where)
(parser-error 'invalid-syntax
"Invalid syntax appears where ~a is expected." where))