If I have a line of code referencing a deprecated function
@test vertex_index(v,g)
that should be
@test vertex_index(g,v)
I get
WARNING: vertex_index{V}(v::V,g::AbstractGraph{V}) is deprecated, use
vertex_index(g,v) instead.
in vertex_index at deprecated.jl:26
in anonymous at test.jl:62
in do_test at test.jl:37
in anonymous at no file:138
in include at boot.jl:244
which I suspect has the information --- the line "in anonymous at no
file:138" seems to have the correct line number, but the filename seems to
have vanished. Is there some way of getting the complete information?