]> gitweb.factorcode.org Git - factor.git/blob - library/platform/jvm/boot-sumo.factor
working on the test suite
[factor.git] / library / platform / jvm / boot-sumo.factor
1 ! :folding=indent:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2003, 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 USE: parser
29
30 !!! The standard library.
31 "/library/platform/jvm/kernel.factor"       run-resource ! kernel
32 "/library/platform/jvm/vectors.factor"      run-resource ! vectors
33 "/library/platform/jvm/stack.factor"        run-resource ! stack
34 "/library/logic.factor"                     run-resource ! logic
35 "/library/platform/jvm/cons.factor"         run-resource ! lists
36 "/library/cons.factor"                      run-resource ! lists
37 "/library/combinators.factor"               run-resource ! combinators
38 "/library/platform/jvm/combinators.factor"  run-resource ! combinators
39 "/library/platform/jvm/math-types.factor"   run-resource ! arithmetic
40 "/library/platform/jvm/arithmetic.factor"   run-resource ! arithmetic
41 "/library/math/arithmetic.factor"           run-resource ! arithmetic
42 "/library/vectors.factor"                   run-resource ! vectors
43 "/library/platform/jvm/stack2.factor"       run-resource ! stack
44 "/library/math/math-combinators.factor"     run-resource ! arithmetic
45 "/library/vector-combinators.factor"        run-resource ! vectors
46 "/library/lists.factor"                     run-resource ! lists
47 "/library/assoc.factor"                     run-resource ! lists
48 "/library/hashtables.factor"                run-resource ! hashtables
49 "/library/platform/jvm/strings.factor"      run-resource ! strings
50 "/library/platform/jvm/sbuf.factor"         run-resource ! strings
51 "/library/strings.factor"                   run-resource ! strings
52 "/library/platform/jvm/errors.factor"       run-resource ! errors
53 "/library/platform/jvm/namespaces.factor"   run-resource ! namespaces
54 "/library/namespaces.factor"                run-resource ! namespaces
55 "/library/sbuf.factor"                      run-resource ! strings
56 "/library/list-namespaces.factor"           run-resource ! namespaces
57 "/library/math/namespace-math.factor"       run-resource ! arithmetic
58 "/library/continuations.factor"             run-resource ! continuations
59 "/library/errors.factor"                    run-resource ! errors
60 "/library/platform/jvm/vocabularies.factor" run-resource ! vocabularies
61 "/library/vocabularies.factor"              run-resource ! vocabularies
62 "/library/platform/jvm/words.factor"        run-resource ! words
63 "/library/words.factor"                     run-resource ! words
64 "/library/format.factor"                    run-resource ! format
65 "/library/platform/jvm/random.factor"       run-resource ! random
66 "/library/random.factor"                    run-resource ! random
67 "/library/platform/jvm/regexp.factor"       run-resource ! regexp
68 "/library/stream.factor"                    run-resource ! streams
69 "/library/platform/jvm/stream.factor"       run-resource ! streams
70 "/library/stdio.factor"                     run-resource ! stdio
71 "/library/platform/jvm/unparser.factor"     run-resource ! unparser
72 "/library/platform/jvm/parser.factor"       run-resource ! parser
73 "/library/styles.factor"                    run-resource ! styles
74 "/library/platform/jvm/threads.factor"      run-resource ! threads
75 "/library/logging.factor"                   run-resource ! logging
76
77 !!! Math library.
78 "/library/platform/jvm/real-math.factor" run-resource ! real-math
79 "/library/math/math.factor"              run-resource ! math
80 "/library/math/pow.factor"               run-resource ! math
81 "/library/math/trig-hyp.factor"          run-resource ! math
82 "/library/math/arc-trig-hyp.factor"      run-resource ! math
83 "/library/math/quadratic.factor"         run-resource ! math
84 "/library/math/list-math.factor"         run-resource ! math
85
86 !!! Development tools.
87 "/library/vocabulary-style.factor"         run-resource ! style
88 "/library/prettyprint.factor"              run-resource ! prettyprint
89 "/library/platform/jvm/prettyprint.factor" run-resource ! prettyprint
90 "/library/interpreter.factor"              run-resource ! interpreter
91 "/library/inspector.factor"                run-resource ! inspector
92 "/library/inspect-vocabularies.factor"     run-resource ! inspector
93 "/library/platform/jvm/compiler.factor"    run-resource ! compiler
94 "/library/platform/jvm/debugger.factor"    run-resource ! debugger
95 "/library/debugger.factor"                 run-resource ! debugger
96 "/library/platform/jvm/listener.factor"    run-resource ! listener
97 "/library/test/test.factor"                run-resource ! test
98 "/library/platform/jvm/test.factor"        run-resource ! test
99 "/library/ansi.factor"                     run-resource ! ansi
100 "/library/telnetd.factor"                  run-resource ! telnetd
101
102 !!! Java -> native VM image cross-compiler.
103 "/library/image.factor"                       run-resource ! cross-compiler
104 "/library/cross-compiler.factor"              run-resource ! cross-compiler
105 "/library/platform/jvm/cross-compiler.factor" run-resource ! cross-compiler
106
107 !!! HTTPD.
108 "/library/httpd/url-encoding.factor"       run-resource ! url-encoding
109 "/library/httpd/html.factor"               run-resource ! html
110 "/library/httpd/http-common.factor"        run-resource ! httpd
111 "/library/httpd/responder.factor"          run-resource ! httpd-responder
112 "/library/httpd/httpd.factor"              run-resource ! httpd
113 "/library/httpd/inspect-responder.factor"  run-resource ! inspect-responder
114 "/library/httpd/file-responder.factor"     run-resource ! file-responder
115 "/library/httpd/quit-responder.factor"     run-resource ! quit-responder
116 "/library/httpd/test-responder.factor"     run-resource ! test-responder
117 "/library/httpd/wiki-responder.factor"     run-resource ! wiki-responder
118 "/library/httpd/default-responders.factor" run-resource ! default-responders
119
120 !!! Final initialization...
121 "/library/init.factor"                     run-resource ! init
122 "/library/platform/jvm/init.factor"        run-resource ! init