]> gitweb.factorcode.org Git - factor.git/commitdiff
locals.parser: try and remove previously broken syntax.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 19 Mar 2021 23:02:09 +0000 (16:02 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 19 Mar 2021 23:02:09 +0000 (16:02 -0700)
core/locals/parser/parser-tests.factor

index df0466b8bc6877806b6500af942c3a2fd8e8909e..85a6913d08f3c6324a69d485f1b7965e0c8c1b3b 100644 (file)
@@ -3,9 +3,6 @@ locals.parser namespaces parser prettyprint sequences sorting
 tools.test vocabs vocabs.parser ;
 IN: locals.parser.tests
 
-! XXX: remove the << and >> below and make test-all pass
-
-<<
 ! (::)
 {
     "dobiedoo"
@@ -37,7 +34,6 @@ IN: locals.parser.tests
         qualified-vocabs last words>> keys "um" swap member?
     ] with-compilation-unit
 ] unit-test
->>
 
 ! check-local-name
 { "hello" } [
@@ -69,7 +65,6 @@ IN: locals.parser.tests
     [ locals>> [ name>> ] map ] [ keys ] bi*
 ] unit-test
 
-<<
 {
     "V{ 99 :> kkk kkk }"
 } [
@@ -80,4 +75,3 @@ IN: locals.parser.tests
         ] with-lexer
     ] with-compilation-unit unparse
 ] unit-test
->>