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

GetJumpStatement() public method

public GetJumpStatement ( ) : Jump
return Jump
		public virtual Rhino.Ast.Jump GetJumpStatement()
		{
			if (type != Token.BREAK && type != Token.CONTINUE)
			{
				CodeBug();
			}
			return jumpNode;
		}