When I give a wrong argument to an existing method, the error message
simply tells me that something is wrong in the method call, without giving
any more information. This is substandard practice. Our C and C++ compilers
report type information about the offending arguments, and (if the method is not
overloaded) specifically tell which argument is at fault. Anything less than this
requires the programmer to typecheck the method call by hand.
simply tells me that something is wrong in the method call, without giving
any more information. This is substandard practice. Our C and C++ compilers
report type information about the offending arguments, and (if the method is not
overloaded) specifically tell which argument is at fault. Anything less than this
requires the programmer to typecheck the method call by hand.