diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2024-10-02 22:06:16 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2024-10-02 22:06:16 -0300 |
commit | 33518551e019f4dab7d95c9390c66b6b8b2339f2 (patch) | |
tree | 7c21f5ce849154579ba6ff295613917f7f186685 /package.lisp | |
parent | aabcaf712f67ac88ec8bd32b5477f17c1a182080 (diff) | |
download | monparser-33518551e019f4dab7d95c9390c66b6b8b2339f2.tar.gz monparser-33518551e019f4dab7d95c9390c66b6b8b2339f2.zip |
Move the project into a new path of breadth first parsing
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/package.lisp b/package.lisp index 4cdb68f..deae22c 100644 --- a/package.lisp +++ b/package.lisp @@ -1,27 +1,10 @@ -(defpackage #:input +(defpackage #:monparser (:use #:cl) - (:export #:file - #:data - #:cursor - #:line-and-column - #:has-data? - #:prefix? - #:peek - #:advance - #:from-string - #:from-file)) - -(defpackage #:parser - (:use #:cl) - (:export #:run - #:parsing-tree - #:parsing-left - #:failure-place - #:failure-message + (:export #:parse-file + #:parse-string #:crit #:comp #:one-of - #:all-of #:unit #:literal #:nothing |