CFGLib.Parsers.Forests.ForestVisitors.DefaultVisitor.Visit C# (CSharp) Method

Visit() public method

public Visit ( ForestInternal node ) : bool
node ForestInternal
return bool
		public virtual bool Visit(ForestInternal node) {
			foreach (var option in node.Options) {
				foreach (var children in option.Children()) {
					foreach (var child in children) {
						child.Accept(this);
					}
				}
			}
			return true;
		}
	}

Same methods

DefaultVisitor::Visit ( ForestLeaf node ) : bool