diff options
author | bd <bdunahu@operationnull.com> | 2025-04-09 20:25:57 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-09 20:25:57 -0400 |
commit | ce80845b5cb5b473327e4e561342490576d83a90 (patch) | |
tree | 90f7189982384c2e4de2f58a3f2daac4adf80514 /src/package.lisp | |
parent | 6ba1871c3825e17d33b96ffd3051239dfe18d61a (diff) |
Successfully parse every instruction type
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/package.lisp b/src/package.lisp index b856e38..2b01d15 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -10,18 +10,10 @@ #:iota #:riffle)) -(defpackage #:lex - (:use #:cl) - (:export #:lexer-error - #:file->tokens - ;; exported for testing only - #:read-token)) - (defpackage #:parse (:use #:cl) - (:export #:parser-error - #:tokens->ast - ;; exported for testing only + (:export ;; exported for testing only + #:text #:register #:instr )) |