diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-07-24 00:12:01 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-07-24 00:12:01 -0300 |
commit | 3eba112a9a5be8181b8ca39b2ca955f28984b1b6 (patch) | |
tree | 497b3277cdee8ba2b5be943b856ac76c7b2fb4fc /package.lisp | |
parent | aa378b3568b7dbb05de0de9f17abaae03863058a (diff) | |
download | monparser-3eba112a9a5be8181b8ca39b2ca955f28984b1b6.tar.gz monparser-3eba112a9a5be8181b8ca39b2ca955f28984b1b6.zip |
Change how critical parts of the parsing are handled
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/package.lisp b/package.lisp index 5936a52..603f6cb 100644 --- a/package.lisp +++ b/package.lisp @@ -13,22 +13,20 @@ (defpackage #:parser (:use #:cl) - (:export #:parsing-p + (:export #:run #:parsing-tree #:parsing-left #:failure-place #:failure-message - #:fail + #:crit #:comp #:one-of #:all-of #:negate - #:unit-if #:unit - #:not-unit #:literal - #:not-literal #:nothing #:optional #:many + #:whitespace #:separated-list)) |