Rhino.Ast.ElementGet.Visit C# (CSharp) Method

Visit() public method

Visits this node, the target, and the index expression.
Visits this node, the target, and the index expression.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
return void
		public override void Visit(NodeVisitor v)
		{
			if (v.Visit(this))
			{
				target.Visit(v);
				element.Visit(v);
			}
		}
	}