From: Mark Wooding Date: Thu, 26 May 2016 08:26:09 +0000 (+0100) Subject: src/module-parse.lisp: Don't explicitly ask for default behaviour. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/65eebc3b1882c74ea1e3e6eefbb1aecb10802b61 src/module-parse.lisp: Don't explicitly ask for default behaviour. * Reporting the scanner position as the error location. * Setting at-least-one when parsing delimitered lists. * Keeping the terminator when skipping to one of several terminator tokens. --- diff --git a/src/module-parse.lisp b/src/module-parse.lisp index 4d4d818..197e3e4 100644 --- a/src/module-parse.lisp +++ b/src/module-parse.lisp @@ -35,7 +35,7 @@ (define-pluggable-parser module typename (scanner pset) (declare (ignore pset)) (with-parser-context (token-scanner-context :scanner scanner) (parse (and "typename" - (skip-many (:min 1) + (skip-many () (seq ((id :id)) (if (gethash id *module-type-map*) (cerror* "Type `~A' already defined" id) @@ -178,7 +178,7 @@ (define-pluggable-parser module set (scanner pset) (parse (skip-many (:min 0) (error (:ignore-unconsumed t) (parse-property scanner module-pset) - (skip-until (:keep-end t) #\, #\;)) + (skip-until () #\, #\;)) #\,)))) #\;)))) @@ -351,8 +351,7 @@ (defun parse-class-body (scanner pset name supers) ;; definition; otherwise it might be a message or slot. (cond ((not (typep type 'c-function-type)) (when (consp name) - (cerror*-with-location - scanner + (cerror* "Method declarations must have function type") (setf name (cdr name))) (parse-slot-item sub-pset base-type type name))