]> gitweb.factorcode.org Git - factor.git/commitdiff
kernel: change errors to be in kernel.private.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 4 Jun 2014 21:33:02 +0000 (14:33 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 4 Jun 2014 21:33:02 +0000 (14:33 -0700)
basis/compiler/tests/linkage-errors.factor
basis/debugger/debugger.factor
basis/math/floats/env/env-tests.factor
core/kernel/kernel-tests.factor
core/kernel/kernel.factor
core/strings/strings-tests.factor
extra/decimals/decimals-tests.factor

index ca9b694644fd24c48f28c2ac11fd849206aa4a83..27040f420ff37bff12ae8ee4a8c6e411bbff1bcb 100644 (file)
@@ -1,6 +1,6 @@
 USING: tools.test namespaces assocs alien.syntax kernel\r
 compiler.errors accessors alien alien.c-types alien.strings\r
-debugger literals ;\r
+debugger literals kernel.private ;\r
 FROM: alien.libraries => add-library load-library ;\r
 IN: compiler.tests.linkage-errors\r
 \r
index 8ff06fda294c36b46cde62c2f5385a93b5ec06c9..84ad2d2dcef049c93ab59a628d1f466dc827fef3 100755 (executable)
@@ -5,11 +5,11 @@ classes.builtin classes.mixin classes.tuple classes.tuple.parser
 combinators combinators.short-circuit compiler.units
 continuations definitions destructors effects.parser generic
 generic.math generic.parser generic.single grouping io
-io.encodings io.styles kernel lexer make math math.order
-math.parser namespaces parser prettyprint sequences
+io.encodings io.styles kernel kernel.private lexer make math
+math.order math.parser namespaces parser prettyprint sequences
 sequences.private slots source-files.errors strings
-strings.parser summary system vocabs vocabs.loader vocabs.parser
-words ;
+strings.parser summary system vocabs vocabs.loader
+vocabs.parser words ;
 FROM: namespaces => change-global ;
 IN: debugger
 
index 3de8c2bf0aaf943d51f8a4d1a0250899cfd8f3ea..af02a9ddd00da7f261bd0b58821b9823581abd12 100755 (executable)
@@ -1,7 +1,7 @@
 USING: kernel math math.floats.env math.floats.env.private
 math.functions math.libm literals sequences tools.test locals
 compiler.units kernel.private fry compiler.test math.private
-words system memory ;
+words system memory kernel.private ;
 IN: math.floats.env.tests
 
 : set-default-fp-env ( -- )
index 9776b23f25506d60071340e2b3d547d4e5238bac..c2fc444510bed2459d865602b316c77fa74352e2 100644 (file)
@@ -2,7 +2,7 @@ USING: arrays byte-arrays kernel kernel.private literals math
 memory namespaces sequences tools.test math.private quotations
 continuations prettyprint io.streams.string debugger assocs
 sequences.private accessors locals.backend grouping words
-system alien alien.accessors ;
+system alien alien.accessors kernel.private ;
 IN: kernel.tests
 
 [ 0 ] [ f size ] unit-test
index 413e7fc67e8fe7103bfee3a89af39db3906bbc4d..d0336d907a44ca1f736cd4a28d5a383cb2a237cf 100644 (file)
@@ -363,11 +363,11 @@ CONSTANT: CONTEXT-OBJ-CATCHSTACK 1
 CONSTANT: CONTEXT-OBJ-CONTEXT 2
 CONSTANT: CONTEXT-OBJ-IN-CALLBACK-P 3
 
-PRIVATE>
-
 ! Runtime errors must be kept in sync with:
 !   vm/errors.hpp
+
 CONSTANT: kernel-error-count 19
+
 CONSTANT: ERROR-EXPIRED 0
 CONSTANT: ERROR-IO      1
 CONSTANT: ERROR-NOT-IMPLEMENTED 2
@@ -387,3 +387,5 @@ CONSTANT: ERROR-CALLSTACK-OVERFLOW 15
 CONSTANT: ERROR-MEMORY 16
 CONSTANT: ERROR-FP-TRAP 17
 CONSTANT: ERROR-INTERRUPT 18
+
+PRIVATE>
index fea72f1e08ef6573f31ec91629a888d1839c74a9..80fc085bb29c8b9d0e2858b3b0ba44430ffef2d5 100644 (file)
@@ -1,6 +1,6 @@
 USING: continuations kernel literals math math.order namespaces make
 strings strings.private sbufs tools.test sequences vectors
-arrays memory prettyprint io.streams.null ;
+arrays memory prettyprint io.streams.null kernel.private ;
 IN: strings.tests
 
 [ CHAR: b ] [ 1 >bignum "abc" nth ] unit-test
index 20f86eae405b44fc525ca8a01afcfb6b4aca5e18..3b6ff627dba992ff4b6dc0380ac177624ccf8651 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: continuations decimals grouping kernel literals locals
 math math.functions math.order math.ratios prettyprint random
-sequences tools.test ;
+sequences tools.test kernel.private ;
 IN: decimals.tests
 
 [ t ] [