Source code: mlsub/typing/TypeSymbol.java
1 /**************************************************************************/
2 /* B O S S A */
3 /* A simple imperative object-oriented research language */
4 /* (c) Daniel Bonniot 1999 */
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 // File : TypeSymbol.java
14 // Created : Sat Jun 03 15:43:17 2000 by Daniel Bonniot
15 //$Modified: Tue Jun 06 17:01:20 2000 by Daniel Bonniot $
16
17 package mlsub.typing;
18
19 /**
20 * A type symbol.
21 *
22 * This is what a type identifier can resolve to.
23 *
24 * @author Daniel Bonniot
25 */
26
27 public interface TypeSymbol
28 {
29 TypeSymbol cloneTypeSymbol();
30 }