Example #1
0
 protected override LithpPrimitive operatorDivide(LithpPrimitive other)
 {
     return(value / other);
 }
Example #2
0
 protected override LithpPrimitive operatorMultiply(LithpPrimitive other)
 {
     return(value * other);
 }
Example #3
0
 public override bool compareEqual(LithpPrimitive other)
 {
     return(value.compareEqual(other));
 }
Example #4
0
 protected override LithpPrimitive operatorMinus(LithpPrimitive other)
 {
     return(value - other);
 }
Example #5
0
 public LithpLiteral(LithpPrimitive value)
 {
     this.value = value;
 }