From a31a4e48875ae3773c2dd291df071b2f6af9966f Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Thu, 9 Jun 2022 18:06:00 +0800 Subject: [PATCH] Fix builds. --- src/ast/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/ast.rs b/src/ast/ast.rs index 108b204e..f7e17414 100644 --- a/src/ast/ast.rs +++ b/src/ast/ast.rs @@ -811,7 +811,7 @@ impl AST { #[cfg(not(feature = "no_module"))] #[inline(always)] pub(crate) fn walk(&self, on_node: &mut impl FnMut(&[ASTNode]) -> bool) -> bool { - self.walk_raw(on_node) + self._walk(on_node) } /// _(internals)_ Recursively walk the [`AST`], including function bodies (if any). /// Return `false` from the callback to terminate the walk.