public virtual Expression AddWith(Integer other) { return(new Error(this, "Don't support adding " + other.GetType().Name)); }
public virtual Expression LesserThanOrEqualTo(Integer other) { return(new Error(this, "Don't support lesser than or equal " + other.GetType().Name)); }
public virtual Expression OrWith(Integer other) { return(new Error(this, "Don't support or with " + other.GetType().Name)); }
public virtual Expression GreaterThan(Integer other) { return(new Error(this, "Don't support greater than " + other.GetType().Name)); }
public virtual Expression ModWith(Integer other) { return(new Error(this, "Don't support modulo " + other.GetType().Name)); }