src/test-base.lisp: Actually signal an error if the tests fail.
[sod] / src / parser / parser-expr-impl.lisp
index 89b0f58..e0c681b 100644 (file)
     (cerror* "Parse error: missing `~A'" tag)))
 
 (defmethod operator-push-action (left (right open-parenthesis))
+  (declare (ignore left))
   :push)
 
 (defmethod operator-push-action ((left open-parenthesis) right)
+  (declare (ignore right))
   :push)
 
 ;;;--------------------------------------------------------------------------