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

Visit() public method

Jumps are only used directly during code generation, and do not support this interface.
Jumps are only used directly during code generation, and do not support this interface.
System.NotSupportedException
public Visit ( NodeVisitor visitor ) : void
visitor NodeVisitor
return void
		public override void Visit(NodeVisitor visitor)
		{
			throw new NotSupportedException(this.ToString());
		}