summaryrefslogtreecommitdiff
path: root/src/spiglet/spiglet2kanga/SpgTemp.java
blob: 3703a2e89534d4636a86ecefbaf24a2532c250a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package spiglet.spiglet2kanga;

public class SpgTemp extends SpgSimpExpr {
	public SpgTemp(int n) {
		super(SpgSimpExpr.SExprType.TEMP);
		num = n;
	}
	
	public int tempNum() {
		return num;
	}
}