Exemplo n.º 1
0
 public void RemoveElement(IScopeElement element)
 {
     this.elements.Remove(element);
     element.ParentScope = null;
 }
Exemplo n.º 2
0
 public void AddElement(IScopeElement element)
 {
     this.elements.Add(element);
     element.ParentScope = this;
 }