summaryrefslogtreecommitdiff
path: root/monparser.asd
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2022-10-30 05:58:46 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2022-10-30 05:58:46 -0300
commit0250b445054766cef04b15cc05912272c0524ee4 (patch)
treebe56a5ca8a79612f82ec7d273928af7c4b35e480 /monparser.asd
downloadmonparser-0250b445054766cef04b15cc05912272c0524ee4.tar.gz
monparser-0250b445054766cef04b15cc05912272c0524ee4.zip
Initial Commit
This first revision has a working parser generator, with support for custom error reporting and handling of string and file inputs.
Diffstat (limited to 'monparser.asd')
-rw-r--r--monparser.asd7
1 files changed, 7 insertions, 0 deletions
diff --git a/monparser.asd b/monparser.asd
new file mode 100644
index 0000000..6374e8e
--- /dev/null
+++ b/monparser.asd
@@ -0,0 +1,7 @@
+(asdf:defsystem #:monparser
+ :serial t
+ :depends-on (#:utils)
+ :components
+ ((:file "package")
+ (:file "input")
+ (:file "parser")))