Example #1
0
 public override bool Walk(LexicalDeclaration node)
 {
     if (node != null)
     {
         for (var ndx = 0; ndx < node.Count; ++ndx)
         {
             var decl = node[ndx];
             if (decl != null)
             {
                 decl.Walk(this);
             }
         }
     }
     return(false);
 }
Example #2
0
 public override bool Walk(LexicalDeclaration node) { AddNode(node); return true; }
 public override bool Walk(LexicalDeclaration node)
 {
     if (node != null)
     {
         for (var ndx = 0; ndx < node.Count; ++ndx)
         {
             var decl = node[ndx];
             if (decl != null)
             {
                 decl.Walk(this);
             }
         }
     }
     return false;
 }