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 bossa.syntax;
12:
13: /**
14: A mapping from type names to type symbols.
15:
16: @version $Date: 2003/05/28 12:57:26 $
17: @author Daniel Bonniot (d.bonniot@mail.dotcom.fr)
18: */
19: public interface TypeMap {
20: mlsub.typing.TypeSymbol lookup(LocatedString name);
21:
22: mlsub.typing.TypeSymbol lookup(String name);
23: }
|