File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -2653,6 +2653,9 @@ code, paired with the boxed variable names. Variable names are `:unknown` when a
26532653slot name cannot be resolved.
26542654
26552655See also [`detect_closure_boxes_all_modules`](@ref) to check all loaded modules.
2656+
2657+ !!! compat "Julia 1.14"
2658+ This method requires Julia 1.14 or later.
26562659"""
26572660function detect_closure_boxes (mods:: Module... )
26582661 @nospecialize
@@ -2723,12 +2726,15 @@ function detect_closure_boxes(mods::Module...)
27232726end
27242727
27252728"""
2726- ()
2729+ detect_closure_boxes_all_modules ()
27272730
27282731Return a sorted `Vector{Pair{Method, Vector{Symbol}}}` of all methods in currently
27292732loaded modules that allocate `Core.Box` in their lowered code.
27302733
27312734See also [`detect_closure_boxes`](@ref) to check specific modules.
2735+
2736+ !!! compat "Julia 1.14"
2737+ This method requires Julia 1.14 or later.
27322738"""
27332739detect_closure_boxes_all_modules () = detect_closure_boxes (Base. loaded_modules_array ()... )
27342740
You can’t perform that action at this time.
0 commit comments