]> gitweb.factorcode.org Git - factor.git/commitdiff
peg: fix unit test failures
authorSlava Pestov <slava@shill.local>
Mon, 19 Oct 2009 11:01:20 +0000 (06:01 -0500)
committerSlava Pestov <slava@shill.local>
Mon, 19 Oct 2009 11:01:20 +0000 (06:01 -0500)
basis/peg/ebnf/ebnf-tests.factor
extra/peg/javascript/parser/parser-tests.factor
extra/peg/pl0/pl0-tests.factor

index bcd881c03d9e31ff7315bda52e7ada6f146729ac..aba92899da7f8a4c178b5b56cf672a588bf5ee59 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2007 Chris Double.
 ! See http://factorcode.org/license.txt for BSD license.
 !
-USING: kernel tools.test peg peg.ebnf words math math.parser 
-       sequences accessors peg.parsers parser namespaces arrays 
-       strings eval unicode.data multiline ;
+USING: kernel tools.test peg peg.ebnf peg.ebnf.private words
+math math.parser sequences accessors peg.parsers parser
+namespaces arrays strings eval unicode.data multiline ;
 IN: peg.ebnf.tests
 
 { T{ ebnf-non-terminal f "abc" } } [
index b587dab29d9363e2e4ce53c454801e02416fda53..87db981f40d70f83d6e7ccd45f92f94d24cfeb4a 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 !
 USING: kernel tools.test peg peg.javascript.ast peg.javascript.parser 
-       accessors sequences math peg.ebnf ;
+       accessors sequences math peg.ebnf peg.ebnf.private ;
 IN: peg.javascript.parser.tests
 
 {
index 23e89bffdb8c6efe278d56a4b549212219f60363..2d76c8df71469c045b5d038613b485f7299dbfa1 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007 Chris Double.
 ! See http://factorcode.org/license.txt for BSD license.
 !
-USING: kernel tools.test peg peg.ebnf peg.pl0 
+USING: kernel tools.test peg peg.ebnf peg.ebnf.private peg.pl0 
        sequences accessors ;
 IN: peg.pl0.tests