From a484c32ae01c697f002e62d17f513155c1151d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Wed, 7 Dec 2022 02:23:29 -0300 Subject: Expand on alternative parsers and lookahead idea --- package.lisp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'package.lisp') diff --git a/package.lisp b/package.lisp index 8656c7c..45e8266 100644 --- a/package.lisp +++ b/package.lisp @@ -6,13 +6,15 @@ (defpackage #:parser (:use #:cl) (:export #:run - #:new - #:bind #:fail #:either #:unit + #:not-unit + #:unit-if + #:literal + #:until-literal #:comp #:nothing - #:zero-or-one - #:zero-or-more - #:one-or-more)) + #:optional + #:many + #:separated-list)) -- cgit v1.2.3