Branch
Hash :
a9ee694d
Author :
Thomas de Grivel
Date :
2018-06-29T12:02:54
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
(in-package :common-lisp-user)
(defpackage :parser-stream
(:use :cl-stream
:common-lisp
:token-stream)
#.(cl-stream:shadowing-import-from)
(:shadow
#:*buffer-size*
#:match
#:match-not
#:match-option
#:match-sequence
#:match-times
)
(:export
#:item
#:item-character
#:item-line
#:item-token
#:match
#:match-not
#:match-option
#:match-or
#:match-sequence
#:match-times
#:parser
#:parser-buffer
#:parser-discard
#:parser-eof-p
#:parser-input
#:parser-input-ended
#:parser-input-n
#:parser-match-start
#:parser-match-token
#:parser-parse
#:parser-pop
#:parser-push
#:parser-push-extend
#:parser-stack
#:parser-token
))