01: /*
02: * @(#)Symbol.java 1.2 04/12/06
03: *
04: * Copyright (c) 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.compiler;
10:
11: class Symbol {
12: int seq;
13: String prefix;
14:
15: Symbol() {
16: this .prefix = "_";
17: }
18:
19: Symbol(String prefix) {
20: this .prefix = prefix;
21: }
22:
23: String gen() {
24: return prefix + seq++;
25: }
26: }
|