Fix intmap bug for maps with only one element
[bpt/guile.git] / module / ice-9 / peg.scm
CommitLineData
add20d35
AW
1;;;; peg.scm --- Parsing Expression Grammar (PEG) parser generator
2;;;;
3;;;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
4;;;;
5;;;; This library is free software; you can redistribute it and/or
6;;;; modify it under the terms of the GNU Lesser General Public
7;;;; License as published by the Free Software Foundation; either
8;;;; version 3 of the License, or (at your option) any later version.
9;;;;
10;;;; This library is distributed in the hope that it will be useful,
11;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13;;;; Lesser General Public License for more details.
14;;;;
15;;;; You should have received a copy of the GNU Lesser General Public
16;;;; License along with this library; if not, write to the Free Software
17;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18;;;;
19
eee0877c 20(define-module (ice-9 peg)
bff3ccd9 21 #:use-module (ice-9 peg codegen)
5e16c417 22 #:use-module (ice-9 peg string-peg)
89c3c9ec
NL
23 ;; Note: the most important effect of using string-peg is not whatever
24 ;; functions it exports, but the fact that it adds a new handler to
25 ;; peg-sexp-compile.
f3f41b92 26 #:use-module (ice-9 peg simplify-tree)
0977b03e 27 #:use-module (ice-9 peg using-parsers)
22d4c9d9 28 #:use-module (ice-9 peg cache)
40ebbd64 29 #:re-export (define-peg-pattern
3ebd5786 30 define-peg-string-patterns
40ebbd64 31 match-pattern
d7e2f5e3 32 search-for-pattern
fee87b82 33 compile-peg-pattern
f3f41b92 34 keyword-flatten
44bd21ae
NL
35 context-flatten
36 peg:start
37 peg:end
38 peg:string
39 peg:tree
40 peg:substring
41 peg-record?))
eee0877c 42