]> gitweb.factorcode.org Git - factor.git/commitdiff
YAML: cleanup USING:
authorJon Harper <jon.harper87@gmail.com>
Sun, 9 Mar 2014 20:14:45 +0000 (21:14 +0100)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 27 Apr 2014 22:24:24 +0000 (15:24 -0700)
extra/yaml/conversion/conversion-tests.factor
extra/yaml/conversion/conversion.factor
extra/yaml/yaml-docs.factor
extra/yaml/yaml.factor

index 9d6ec0a442a4add325e2bfa1b8740a63e96c9ad0..65a3455be1bc779044ecefd662182adaa780c713 100644 (file)
@@ -1,6 +1,7 @@
 ! Copyright (C) 2014 Jon Harper.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel literals sequences tools.test yaml.ffi yaml.conversion ;
+USING: kernel literals sequences tools.test yaml.conversion
+yaml.ffi ;
 IN: yaml.conversion.tests
 
 : resolve-test ( res str -- ) [ resolve-plain-scalar ] curry unit-test ;
index 32a7af892a8a1913d18e0b7b785275a7dbcbf380..9dce35b031b544750e4575e9b120d16ccbdb1adc 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2014 Jon Harper.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors base64 byte-arrays combinators
-combinators.extras kernel locals math math.parser regexp
-sequences strings yaml.ffi ;
+combinators.extras kernel math math.parser regexp sequences
+strings yaml.ffi ;
 IN: yaml.conversion
 
 ! !!!!!!!!!!!!!!
index 3619f666146add759de08263b0b2ad62327b34cb..03cd8053803fbdacd586794b8f4cd7248b818b5a 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2014 Jon Harper.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs help.markup help.syntax kernel sequences
-strings ;
+USING: arrays help.markup help.syntax kernel sequences strings ;
 IN: yaml
 
 HELP: >yaml
index 51d72b6e9d3af4475bfe8ab0060eb4890d9c464a..dbd2a49c941d3255266c40fa3c1404d26fba5890 100644 (file)
@@ -1,11 +1,9 @@
 ! Copyright (C) 2013 Jon Harper.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien.c-types alien.data alien.syntax assocs
-base64 byte-arrays classes.struct combinators continuations
-destructors io.encodings.string io.encodings.utf8 kernel libc
-locals make math math.parser namespaces prettyprint sequences
-strings yaml.ffi yaml.conversion ;
-FROM: math => float ;
+USING: accessors alien.data assocs byte-arrays classes.struct
+combinators destructors io.encodings.string io.encodings.utf8
+kernel libc locals make namespaces sequences strings yaml.ffi
+yaml.conversion ;
 IN: yaml
 
 <PRIVATE