Modify the src-pos error reporting in parser-tools to better show the token context.

Addresses PR 9924.

original commit: 9b86d4452fc4e1be823e12373aac2d5f432006da
tokens
Danny Yoo 11 years ago
parent f79949dce3
commit 0156d62399

@ -228,17 +228,29 @@
"(or/c symbol? token?)"
0
tok))))
;; well-formed-position-token?: any -> boolean
;; Returns true if pt is a position token whose position-token-token
;; is itself a token or a symbol.
;; This is meant to help raise more precise error messages when
;; a tokenizer produces an erroneous position-token wrapped twice.
;; (as often happens when omitting return-without-pos).
(define (well-formed-position-token? pt)
(and (position-token? pt)
(let ([t (position-token-token pt)])
(or (symbol? t)
(token? t)))))
;; extract-src-pos : position-token -> symbol any any any
(define (extract-src-pos ip)
(cond
((position-token? ip)
((well-formed-position-token? ip)
(extract-helper (position-token-token ip)
(position-token-start-pos ip)
(position-token-end-pos ip)))
(else
(raise-argument-error 'parser
"position-token?"
"well-formed-position-token?"
0
ip))))

Loading…
Cancel
Save