Fixing builder failures

db4
Slava Pestov 2008-06-25 15:35:14 -05:00
parent c71d09ee30
commit d65a76d10f
3 changed files with 4 additions and 3 deletions

View File

@ -81,7 +81,7 @@ PRIVATE>
[ encoding-file parse-file 8-bit boa ] [ encoding-file parse-file 8-bit boa ]
bi* bi*
] assoc-map ] assoc-map
[ keys [ define-symbol ] each ]
[ 8-bit-encodings set-global ] [ 8-bit-encodings set-global ]
[ [ [ ] curry define ] assoc-each ]
bi bi
] with-compilation-unit ] with-compilation-unit

View File

@ -4,7 +4,8 @@ USING: kernel compiler.units words arrays strings math.parser sequences
quotations vectors namespaces math assocs continuations peg quotations vectors namespaces math assocs continuations peg
peg.parsers unicode.categories multiline combinators.lib peg.parsers unicode.categories multiline combinators.lib
splitting accessors effects sequences.deep peg.search splitting accessors effects sequences.deep peg.search
combinators.short-circuit ; combinators.short-circuit lexer io.streams.string inference io
prettyprint combinators parser ;
IN: peg.ebnf IN: peg.ebnf
: rule ( name word -- parser ) : rule ( name word -- parser )

View File

@ -1,7 +1,7 @@
! Based on Clojure's PersistentVector by Rich Hickey. ! Based on Clojure's PersistentVector by Rich Hickey.
USING: math accessors kernel sequences.private sequences arrays USING: math accessors kernel sequences.private sequences arrays
combinators combinators.lib parser prettyprint.backend ; combinators combinators.short-circuit parser prettyprint.backend ;
IN: persistent-vectors IN: persistent-vectors
ERROR: empty-error pvec ; ERROR: empty-error pvec ;