From e0ee1b336d5a04e9d3dc8f5da8e6e2467b5b069e Mon Sep 17 00:00:00 2001
From: Michiel Cottaar <MichielCottaar@protonmail.com>
Date: Fri, 24 May 2024 13:08:40 +0100
Subject: [PATCH] Avoid processing embedded function definitions

---
 src/variables.jl | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/variables.jl b/src/variables.jl
index af360ae..3d0df17 100644
--- a/src/variables.jl
+++ b/src/variables.jl
@@ -127,6 +127,9 @@ function _defvar(func_def, getter=nothing)
     end
 
     function adjust_function(ex)
+        if ex isa Expr && ex.head == :block
+            return Expr(:block, adjust_function.(ex.args)...)
+        end
         if ex isa Expr && ex.head == :function && length(ex.args) == 1
             push!(func_names, ex.args[1])
             return :nothing
@@ -148,7 +151,7 @@ function _defvar(func_def, getter=nothing)
             rethrow()
         end
     end
-    new_func_def = MacroTools.postwalk(adjust_function, func_def)
+    new_func_def = adjust_function(func_def)
 
     function fix_function_name(ex)
         if ex in func_names
-- 
GitLab