1 COMMENT The Smalltalk source code of the initial image.
2 COMMENT Must be compiled with the image builder tools to
3 COMMENT create a binary image for the Little Smalltalk
4 COMMENT virtual machine.
6 COMMENT ---------------------------------------------------------------
7 COMMENT Little Smalltalk, Version 5
9 COMMENT Copyright (C) 1987-2005 by Timothy A. Budd
10 COMMENT Copyright (C) 2007 by Charles R. Childers
11 COMMENT Copyright (C) 2005-2007 by Danny Reinhold
13 COMMENT ============================================================================
14 COMMENT This license applies to the virtual machine and to the initial image of
15 COMMENT the Little Smalltalk system and to all files in the Little Smalltalk
16 COMMENT packages except the files explicitly licensed with another license(s).
17 COMMENT ============================================================================
18 COMMENT Permission is hereby granted, free of charge, to any person obtaining a copy
19 COMMENT of this software and associated documentation files (the "Software"), to deal
20 COMMENT in the Software without restriction, including without limitation the rights
21 COMMENT to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22 COMMENT copies of the Software, and to permit persons to whom the Software is
23 COMMENT furnished to do so, subject to the following conditions:
25 COMMENT The above copyright notice and this permission notice shall be included in
26 COMMENT all copies or substantial portions of the Software.
28 COMMENT THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 COMMENT IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 COMMENT FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31 COMMENT AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32 COMMENT LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
33 COMMENT FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34 COMMENT DEALINGS IN THE SOFTWARE.
37 COMMENT -----------------------------------------------------------
38 COMMENT RAWCLASS name instanceOf subclassOf (instance variable names)
39 COMMENT or... CLASS name subclassOf (instance vars)
40 COMMENT RAWCLASS doesn't automatically build Meta class; CLASS does
41 COMMENT -----------------------------------------------------------
43 COMMENT -----------------------------------------------------------
44 COMMENT Object subclass: System cvar0 ... [ | ivar0 ... ]
45 COMMENT -----------------------------------------------------------
51 PACKAGE LstCompiler 1 REQUIRES System 1
54 PACKAGE Files 1 REQUIRES System 1 LstCompiler 1
57 PACKAGE GstParser 1 REQUIRES System 1 LstCompiler 1
60 PACKAGE HostOS 1 REQUIRES System 1
63 COMMENT PACKAGE HostOS 1 REQUIRES System 1
64 COMMENT MODULE defs/ffi
66 COMMENT PACKAGE Image 1 REQUIRES HostOS 1
67 COMMENT MODULE defs/image
70 PACKAGE Repl 1 REQUIRES System 1
72 COMMENT INCLUDE transcript