Exemplo n.º 1
0
 public void Visit(BindingIdentifier node)
 {
     // binding identifier, so we don't care
 }
Exemplo n.º 2
0
 public void Visit(BindingIdentifier node)
 {
     Debug.Fail("shouldn't get here");
 }
Exemplo n.º 3
0
 public void Visit(BindingIdentifier node)
 {
     // the binding identifier is the individual bound name
     node.IfNotNull(n => m_bindings.Add(n));
 }
 public void Visit(BindingIdentifier node)
 {
     // we're good
 }
 public void Visit(BindingIdentifier node)
 {
     // invalid! ignore
     IsValid = false;
 }