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