|
|
|
@ -28,7 +28,10 @@
|
|
|
|
|
(lambda (tok-type tok-value offset line column span)
|
|
|
|
|
(raise (exn:fail:parsing
|
|
|
|
|
(string-append
|
|
|
|
|
(format "Encountered unexpected token ~e (~e) while parsing" tok-type tok-value)
|
|
|
|
|
(format "Encountered unexpected token of type ~e (value ~e) while parsing"
|
|
|
|
|
(if (memq tok-type (map string->symbol '("\n" "\t" "\r")))
|
|
|
|
|
(format "~a" tok-type)
|
|
|
|
|
tok-type) tok-value)
|
|
|
|
|
(if (or (current-source) line column offset)
|
|
|
|
|
(format " ~e [line=~a, column=~a, offset=~a]" (current-source) line column offset)
|
|
|
|
|
""))
|
|
|
|
|