public override bool IsMatch( Parser.Token tkn) { return (tkn.ToString() == ">"); }
/// <summary> /// CheckParms( Parser.Token, CValue) - This method makes certain the single argument is non-null. /// Raises an exception if it is. /// </summary> /// <param name="oToken">Parser.Token object</param> /// <param name="arg1">CValue argument</param> private void CheckParms( Parser.Token oToken, CValue arg1 ) { if( arg1 == null ) throw new ApplicationException("Argument not supplied near " + oToken.ToString() + " operation."); }