Age | Commit message (Collapse) | Author | Files | Lines |
|
* module/ice-9/peg.scm: rename 'peg-sexp-compile' to
'compile-peg-pattern'
* module/ice-9/peg/codegen.scm: same
* module/ice-9/peg/string-peg.scm: same
* module/ice-9/peg/using-parsers.scm: same
* doc/ref/api-peg.texi: same
|
|
* module/ice-9/peg.scm: rename 'define-grammar' to
'define-peg-string-patterns'
* module/ice-9/peg/string-peg.scm: same
* doc/ref/api-peg.texi: same
* test-suite/tests/peg.bench: same
* test-suite/tests/peg.test: same
|
|
* module/ice-9/peg.scm: rename 'define-nonterm' to 'define-peg-pattern'
* module/ice-9/peg/using-parsers.scm: same
* module/ice-9/peg/string-peg.scm: same
* test-suite/tests/peg.test: same
* doc/ref/api-peg.texi: same
|
|
* module/ice-9/peg.scm: rename 'peg-parse' to 'match-pattern'
* module/ice-9/peg/string-peg.scm: same
* module/ice-9/peg/using-parsers.scm: same
* doc/ref/api-peg.texi: same
* test-suite/tests/peg.test: same
* test-suite/tests/peg.bench: same
|
|
* doc/ref/api-peg.texi: rename 'peg-match' to 'search-for-pattern'
* module/ice-9/peg.scm: same
* module/ice-9/peg/using-parsers.scm: same
* test-suite/tests/peg.test: same
|
|
doc/ref/api-peg.texi: suggest a cleaner method of generating PEG parsers
at runtime.
|
|
Change the PEG documentation to use the new style of s-expression PEGs.
|
|
The PEG s-expression syntax now uses '(not-followed-by ...)' instead of
'(body ! ... 1)'.
|
|
The PEG s-expression syntax now uses '(followed-by ...)' instead of
'(body & ... 1)'.
|
|
The PEG s-expression syntax now uses '(? ...)' instead of '(body lit ... ?)'.
|
|
The PEG s-expression syntax now uses '(+ ...)' instead of '(body lit ... +)'.
|
|
The s-expression representation of PEG grammars now uses a '(* ...)' form
instead of '(body lit ... *)'.
|
|
* module/ice-9/peg/codegen.scm: Make the PEG syntax extensible, and
move most of the current code generators to the new interface
* doc/ref/api-peg.texi: Document PEG extensions in the PEG Internals
section of the manual
|
|
* doc/ref/api-peg.texi: add a manual section about the PEG internals.
|
|
* doc/ref/api-peg.texi: Reformat and reflow.
|
|
* module/ice-9/peg.scm: New file.
* module/Makefile.am: Add to build.
* doc/ref/Makefile.am:
* doc/ref/api-peg.texi:
* doc/ref/guile.texi: Add documentation for PEG parser.
* test-suite/Makefile.am:
* test-suite/tests/peg.bench:
* test-suite/tests/peg.test: Add tests, and a benchmark.
|