Fixed setSigil incorrectly calling setSymbol
h3rald h3rald@h3rald.com
Wed, 03 Jun 2026 10:45:59 +0200
2 files changed,
2 insertions(+),
1 deletions(-)
M
minpkg/core/parser.nim
→
minpkg/core/parser.nim
@@ -1166,7 +1166,7 @@ result = true
else: # Go up the scope chain and attempt to find the sigil if not scope.parent.isNil: - result = scope.parent.setSymbol(key, value) + result = scope.parent.setSigil(key, value) proc previous*(scope: ref MinScope): ref MinScope = if scope.parent.isNil:
M
next-release.md
→
next-release.md
@@ -9,5 +9,6 @@ * No longer using ref for `MinValue` objects.
* No longer performing a deep copy when dequoting. * Optimized the way debug information is stored to reduce memory usage. * Avoiding creating unnecessary scopes when possible (withScope macro already creates a scope). +* Fixed `setSigil` incorrectly calling `setSymbol`.