From e99db500218574ea0a5c1a991c6adee5290d6b23 Mon Sep 17 00:00:00 2001 From: Gianluca Guarini Date: Fri, 15 Nov 2024 22:08:18 +0100 Subject: [PATCH] fixed: closes #180 --- src/generators/template/utils.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generators/template/utils.js b/src/generators/template/utils.js index 2f7f0fc..412e759 100644 --- a/src/generators/template/utils.js +++ b/src/generators/template/utils.js @@ -124,6 +124,8 @@ function visitObjectProperty(path) { function visitThisExpression(path) { path.replace(scope) this.traverse(path) + + return false } /**