public Assignment(Ownership <COOPFunction> ownership, VariableInformation variableInformation, string variable, COOPObject coopObject) : base(ownership)
 {
     this.variableInformation = variableInformation;
     this.variable            = variable;
     this.coopObject          = coopObject;
 }
 public InstanceParameterAssignment(string name, COOPObject o)
 {
     this.o    = o;
     this.name = name;
 }