01: /**************************************************************************/
02: /* B O S S A */
03: /* A simple imperative object-oriented research language */
04: /* (c) Daniel Bonniot 1999 */
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.typing;
12:
13: /**
14: * A type symbol.
15: *
16: * This is what a type identifier can resolve to.
17: *
18: * @author Daniel Bonniot
19: */
20:
21: public interface TypeSymbol {
22: TypeSymbol cloneTypeSymbol();
23: }
|