public void Visit(ImportantComment node)
 {
     if (node != null)
     {
         DoesRequire = false;
     }
 }
 public void Visit(ImportantComment node)
 {
     // not applicable; terminate
 }
Beispiel #3
0
 public void Visit(ImportantComment node)
 {
     // we're good?
 }
 public virtual void Visit(ImportantComment node)
 {
     // no children
 }
Beispiel #5
0
 public void Visit(ImportantComment node)
 {
     // comment, so we need to keep going
 }
Beispiel #6
0
 public void Visit(ImportantComment node)
 {
     ReportError(node);
 }
Beispiel #7
0
 public virtual void Visit(ImportantComment node)
 {
     // no children
 }
Beispiel #8
0
 public void Visit(ImportantComment node)
 {
     // invalid! ignore
     IsValid = false;
 }