
public class SymbolResolveNode extends Node {
	private Symbol name;
	private ConsNode scope;
	public SymbolResolveNode(Symbol id, ConsNode scope) {
		this.name = id;
		this.scope = scope;
	}
	public void setName(Symbol name) {
		this.name = name;
	}
	public Symbol getName() {
		return name;
	}
	@Override
	public String toIndentedString(int surroundingIndentation) {
		return name.toString();
	}
	public void setScope(ConsNode scope) {
		this.scope = scope;
	}
	public ConsNode getScope() {
		return scope;
	}
}
