using System; using System.Collections.Generic; using System.Text; namespace Casper { //Variable changed from integer ID to a reference of the variabli itself. public class Assignment { private LookAheadVarDom variable; public Assignment(LookAheadVarDom variable) { this.variable = variable; } public LookAheadVarDom Variable { get { return variable; } set { variable = value; } } public void Set(LookAheadVarDom var) { this.variable = var; } } }