Esempio n. 1
0
        ILuaValue ILuaValueVisitor.Arithmetic(BinaryOperationType type, LuaThread self)
        {
            var ret = LuaValueBase._attemptMetamethod(type, self, this);

            if (ret != null)
            {
                return(ret);
            }

            throw new InvalidOperationException(Errors.CannotArithmetic(LuaValueType.Thread));
        }
Esempio n. 2
0
 public ILuaValue ArithmeticFrom(BinaryOperationType type, LuaThread self)
 {
     throw new NotImplementedException();
 }