Exemple #1
0
 /// <inheritdoc />
 protected override object ExecuteToken(ScriptContext context)
 {
     try {
         object lhs = Lhs.Execute(context);
         object rhs = Rhs.Execute(context);
         TypeInformation.ConvertOperands(ref lhs, ref rhs);
         return(Operate(lhs, rhs, context));
     }
     catch (RuntimeBinderException e) {
         throw new ScriptRuntimeException(e.Message, null, e);
     }
 }