src/pset-parse.lisp: Add a little vertical space and commentary.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 01:26:17 +0000 (02:26 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 01:28:42 +0000 (02:28 +0100)
src/pset-parse.lisp

index 4dec565..e86be27 100644 (file)
                        ,@body))))))
 
     (flet ((dispatch (name args &rest spec)
+            ;; Evaluate the ARGS to determine their types and values.  Find
+            ;; the first SPEC, of the form (RETTY OP ARGTY*), where the
+            ;; ARGTYs match the argument types, in order, and apply OP to
+            ;; the argument values, return this as a result of type RETTY.
+            ;; If no SPEC matches, then report an error.
+
             (oplambda
               (let ((args (mapcar (compose #'funcall #'cons) args)))
                 (aif (find-if (lambda (item)
 
            ;; Parse the expression, producing a thunk.
            (expr (:nestedp nestedp)
+
              (lisp (case (token-type scanner)
+
                      ((:int :id :char :string)
+                      ;; A simple literal.
                       (let ((type (token-type scanner))
                             (value (token-value scanner)))
                         (scanner-step scanner)
                         (values (lambda () (values type value)) t t)))
+
                      (#\?
+                      ;; A Lisp s-expression.  Catch and report reader-
+                      ;; errors (though the main parser will probably
+                      ;; end up /very/ confused); delay evaluation for
+                      ;; later.
                       (handler-case
                           (let* ((stream (make-scanner-stream scanner))
                                  (sexp (read stream t)))
                                                  "Lisp `read' error: ~A"
                                                  cond)
                           (values #'continue t t))))
+
                      (#\{
+                      ;; A code fragment.
                       (let ((fragment (parse-delimited-fragment scanner
                                                                 #\{ #\})))
                         (values (lambda () (values :fragment fragment))
                                 t t)))
+
                      (#\<
+                      ;; A C type.
                       (parse (seq (#\<
                                    (ds (parse-c-type scanner))
                                    (dc (parse-declarator
                                    #\>)
                                (values (lambda () (values :type (car dc)))
                                        t t))))
+
                      (t
+                      ;; Anything else is an error.
                       (values (list :int :id :char :string #\? #\{ #\<)
                               nil nil))))
 
+             ;; Binary operators.
              ((:op #\* binop "*" (x y 7)
                    (dispatch "*" (list x y) (list :int #'* :int :int)))
               (:op #\/ binop "/" (x y 7)
               (:op #\- binop "-" (x y 5)
                    (dispatch "-" (list x y) (list :int #'- :int :int))))
 
+             ;; Prefix operators.
              ((:op #\+ preop "+" (x 9)
                    (dispatch "+" (list x) (list :int #'+ :int)))
               (:op #\- preop "-" (x 9)
                    (dispatch "-" (list x) (list :int #'- :int)))
               (:op #\( lparen #\)))
 
+             ;; Postfix operators.
              ((:op (when nestedp #\)) rparen #\))))
 
          ;; Do the delayed evaluation.  Establish a restart so that we can