public void PutInstanceProperty(string name, LayeProperty property) { if (name == null) throw new ArgumentNullException(); else if (property == null) throw new ArgumentNullException(); if (instanceFields.Contains(name)) return; instanceProperties[name] = property; }
public void PutInstanceOperatorIndex(string op, LayeProperty property) { if (op == null) throw new ArgumentNullException(); else if (property == null) throw new ArgumentNullException(); instanceOperatorIndex[op] = property; }