I've been going through Base and Base.LinAlg and removed a couple of obsolete functions that were still being exported. TypeCheck.check_return_types has been really useful since it throws an error for each such function; for example:
ERROR: cholpfact not defined
in check_all_module at /Users/jiahao/.julia/v0.3/TypeCheck/src/TypeCheck.jl:13
in check_return_types at /Users/jiahao/.julia/v0.3/TypeCheck/src/TypeCheck.jl:44
in process_options at ./client.jl:213
in _start at ./client.jl:354
It would be nice, however, to collect all such identifiers and report them all together.
I've been going through
BaseandBase.LinAlgand removed a couple of obsolete functions that were still being exported.TypeCheck.check_return_typeshas been really useful since it throws an error for each such function; for example:It would be nice, however, to collect all such identifiers and report them all together.