1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

Separate PEG Strings

* module/ice-9/peg.scm: remove functions dealing with PEGs as strings
 * module/ice-9/peg/string-peg.scm: and put them here
This commit is contained in:
Noah Lavine 2011-03-05 23:54:50 -05:00 committed by Andy Wingo
parent 00923497d2
commit 5e16c41703
3 changed files with 315 additions and 282 deletions

View file

@ -20,6 +20,7 @@
(define-module (ice-9 peg codegen)
#:export (peg-sexp-compile)
#:use-module (ice-9 peg)
#:use-module (ice-9 peg string-peg)
#:use-module (ice-9 pretty-print)
#:use-module (system base pmatch))