X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/9ec578d9fe450b7e7f9030dc9d930185593aa991..da901cf29aae60b244bd9fcee72a5a2f59d359f2:/src/parser/scanner-proto.lisp diff --git a/src/parser/scanner-proto.lisp b/src/parser/scanner-proto.lisp index a852bdb..c6236c5 100644 --- a/src/parser/scanner-proto.lisp +++ b/src/parser/scanner-proto.lisp @@ -7,7 +7,7 @@ ;;;----- Licensing notice --------------------------------------------------- ;;; -;;; This file is part of the Sensble Object Design, an object system for C. +;;; This file is part of the Sensible Object Design, an object system for C. ;;; ;;; SOD is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by @@ -99,9 +99,12 @@ if you wanted to circumvent the cleanup then you should have used `with-parser-place', which does all of this in the meta-level." (once-only (scanner) - `(let ((,place (scanner-capture-place ,scanner))) - (unwind-protect (progn ,@body) - (scanner-release-place ,scanner ,place))))) + (multiple-value-bind (docs decls body) (parse-body body :docp nil) + (declare (ignore docs)) + `(let ((,place (scanner-capture-place ,scanner))) + ,@decls + (unwind-protect (progn ,@body) + (when ,place (scanner-release-place ,scanner ,place))))))) ;;;-------------------------------------------------------------------------- ;;; Character scanner protocol. @@ -172,33 +175,11 @@ ;;;-------------------------------------------------------------------------- ;;; Token scanner protocol. -;; A place marker. - -(export '(token-scanner-place token-scanner-place-p)) -(defstruct token-scanner-place - "A link in the chain of lookahead tokens; capturable as a place. - - If the scanner's place is captured, it starts to maintain a list of - lookahead tokens. The list contains internal links -- it works out - slightly easier that way. This is basically a simpler version of the - charbuf scanner (q.v.); most significantly, the chain links here do double - duty as place markers. - - The details of this structure are not a defined part of the token scanner - protocol." - - (scanner nil :type token-scanner :read-only t) - (next nil :type (or token-scanner-place null)) - (type nil :read-only t) - (value nil :read-only t) - (line 1 :type (or fixnum null) :read-only t) - (column 0 :type (or fixnum null) :read-only t)) - ;; The token scanner base class and parser context. (export '(token-scanner token-type token-value)) (defclass token-scanner () - ((type :reader token-type) + ((%type :reader token-type) (value :reader token-value) (captures :initform 0 :type fixnum) (tail :initform nil :type (or token-scanner-place null)) @@ -225,6 +206,33 @@ (:documentation "A parser context for a richer token-based scanners.")) +;; A place marker. + +(export '(token-scanner-place token-scanner-place-p)) +(defstruct (token-scanner-place + (:constructor make-token-scanner-place + (&key scanner next type value line column + &aux (%type type)))) + "A link in the chain of lookahead tokens; capturable as a place. + + If the scanner's place is captured, it starts to maintain a list of + lookahead tokens. The list contains internal links -- it works out + slightly easier that way. This is basically a simpler version of the + charbuf scanner (q.v.); most significantly, the chain links here do double + duty as place markers. + + The details of this structure are not a defined part of the token scanner + protocol." + + (scanner nil :type token-scanner :read-only t) + (next nil :type (or token-scanner-place null)) + (%type nil :read-only t) + (value nil :read-only t) + (line 1 :type (or fixnum null) :read-only t) + (column 0 :type (or fixnum null) :read-only t)) +(define-access-wrapper token-scanner-place-type token-scanner-place-%type + :read-only t) + ;; Protocol. (export 'scanner-token)