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 0ef1569 commit f973147Copy full SHA for f973147
src/CodeTracking.jl
@@ -61,7 +61,8 @@ 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
-MethodInfoKey(method::Method) = MethodInfoKey(Base.get_methodtable(method), method.sig)
+method_table(method::Method) = isdefined(method, :external_mt) ? method.external_mt::MethodTable : nothing
65
+MethodInfoKey(method::Method) = MethodInfoKey(method_table(method), method.sig)
66
67
### Public API
68
0 commit comments