CFGLib.Parsers.Forests.ForestVisitors.DefaultVisitor.Visit C# (CSharp) 메소드

Visit() 공개 메소드

public Visit ( ForestInternal node ) : bool
node ForestInternal
리턴 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