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