01: /**************************************************************************/
02: /* N I C E */
03: /* A high-level object-oriented research language */
04: /* (c) Daniel Bonniot 2000 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package mlsub.compilation;
12:
13: /**
14: * Stores information about a mlsub compilation.
15: *
16: * Information includes:
17: * - whether to perform link tests
18: * - ...
19: *
20: * Only information needed to perform the steps
21: * of compilation should go here.
22: * Other language specific options should go in a
23: * subclass.
24: */
25: public class Compilation {
26: public boolean skipLink;
27: public Module root;
28: }
|