We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20abb2b commit 0ef1569Copy full SHA for 0ef1569
src/CodeTracking.jl
@@ -61,8 +61,7 @@ const expressions_callback = Ref{Any}(nothing)
61
const juliabase = joinpath("julia", "base")
62
const juliastdlib = joinpath("julia", "stdlib", "v$(VERSION.major).$(VERSION.minor)")
63
64
-method_table(method::Method) = isdefined(method, :external_mt) ? method.external_mt::MethodTable : nothing
65
-MethodInfoKey(method::Method) = MethodInfoKey(method_table(method), method.sig)
+MethodInfoKey(method::Method) = MethodInfoKey(Base.get_methodtable(method), method.sig)
66
67
### Public API
68
0 commit comments