You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/walks.jl
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,11 @@ Attempting to wrap an existing `AbstractWalk` is a no-op (i.e. it is not wrapped
27
27
"""
28
28
struct AnonymousWalk{F} <:AbstractWalk
29
29
walk::F
30
+
31
+
functionAnonymousWalk(walk::F) where F
32
+
Base.depwarn("Wrapping a custom walk function as an `AnonymousWalk`. Future versions will only support custom walks that explicitly subtyle `AbstractWalk`.", :AnonymousWalk)
0 commit comments