summaryrefslogtreecommitdiff
path: root/doc/ref/api-peg.texi
AgeCommit message (Collapse)AuthorFilesLines
2013-01-16PEG RenamesNoah Lavine1-5/+5
* 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
2013-01-16PEG RenamesNoah Lavine1-11/+11
* 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
2013-01-16PEG RenamesNoah Lavine1-27/+27
* 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
2013-01-16PEG RenamesNoah Lavine1-30/+30
* 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
2013-01-16PEG RenamesNoah Lavine1-34/+34
* 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
2013-01-16Document PEGs at RuntimeNoah Lavine1-11/+15
doc/ref/api-peg.texi: suggest a cleaner method of generating PEG parsers at runtime.
2013-01-16Update PEG DocumentationNoah Lavine1-23/+29
Change the PEG documentation to use the new style of s-expression PEGs.
2013-01-16Add 'not-followed-by' PEGNoah Lavine1-2/+2
The PEG s-expression syntax now uses '(not-followed-by ...)' instead of '(body ! ... 1)'.
2013-01-16Add 'followed-by' PEGNoah Lavine1-2/+2
The PEG s-expression syntax now uses '(followed-by ...)' instead of '(body & ... 1)'.
2013-01-16Add '?' PEGNoah Lavine1-1/+1
The PEG s-expression syntax now uses '(? ...)' instead of '(body lit ... ?)'.
2013-01-16Add '+' PEGNoah Lavine1-1/+1
The PEG s-expression syntax now uses '(+ ...)' instead of '(body lit ... +)'.
2013-01-16Add '*' PEGNoah Lavine1-1/+1
The s-expression representation of PEG grammars now uses a '(* ...)' form instead of '(body lit ... *)'.
2013-01-16Extensible PEG SyntaxNoah Lavine1-0/+32
* 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
2013-01-16Document PEG InternalsNoah Lavine1-0/+71
* doc/ref/api-peg.texi: add a manual section about the PEG internals.
2013-01-16reformat and reflow api-peg.texiAndy Wingo1-142/+366
* doc/ref/api-peg.texi: Reformat and reflow.
2013-01-16add PEG parser generatorAndy Wingo1-0/+699
* 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.