]> gitweb.factorcode.org Git - factor.git/commitdiff
locals.parser: remove << >> from tests to see if it works now.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 8 Jan 2017 22:52:55 +0000 (14:52 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 8 Jan 2017 22:52:55 +0000 (14:52 -0800)
basis/locals/parser/parser-tests.factor

index 50ba01c4a36d1602d75619bd73f98960d680bc78..52fb84644db08309cd61d13746e3494112b206b5 100644 (file)
@@ -1,11 +1,7 @@
-USING: accessors assocs compiler.units kernel lexer locals.backend
-locals.parser namespaces parser prettyprint sequences sorting
-tools.test vocabs vocabs.parser ;
-IN: locals.parser.tests
+USING: accessors assocs compiler.units kernel lexer
+locals.backend locals.parser parser prettyprint sequences
+tools.test vocabs.parser ;
 
-! XXX: remove the << and >> below and make test-all pass
-
-<<
 ! (::)
 {
     "dobiedoo"
@@ -26,7 +22,6 @@ IN: locals.parser.tests
         qualified-vocabs last words>> keys "um" swap member?
     ] with-compilation-unit
 ] unit-test
->>
 
 ! check-local-name
 { "hello" } [
@@ -58,15 +53,12 @@ IN: locals.parser.tests
     [ locals>> [ name>> ] map ] [ keys ] bi*
 ] unit-test
 
-<<
 {
     "V{ 99 :> kkk kkk }"
 } [
     [
-        "locals" use-vocab
         { "99 :> kkk kkk ;" } <lexer> [
             H{ } clone [ \ ; parse-until ] with-lambda-scope
         ] with-lexer
     ] with-compilation-unit unparse
 ] unit-test
->>