summaryrefslogtreecommitdiff
path: root/parser/compiler.go
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2025-11-10 14:01:16 +0100
committerMarc Vertes <mvertes@free.fr>2025-11-10 14:01:16 +0100
commit0035f65d697e165c4f2ba2d445bfa938ab4159ee (patch)
treea2b9779d2cf0ac7c1a36ec381b0ed0b1be2a1bba /parser/compiler.go
parentc6ff109198546a8adb340a7be84a7fc03762081b (diff)
chore: fix lint
Diffstat (limited to 'parser/compiler.go')
-rw-r--r--parser/compiler.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/parser/compiler.go b/parser/compiler.go
index 634409e..06bc87a 100644
--- a/parser/compiler.go
+++ b/parser/compiler.go
@@ -385,11 +385,11 @@ func (e entry) String() string {
if e.symbol != nil {
return fmt.Sprintf("name: %s,local: %t, i: %d, k: %d, t: %s, v: %v",
e.name,
- e.symbol.local,
- e.symbol.index,
- e.symbol.kind,
- e.symbol.typ,
- e.symbol.value,
+ e.local,
+ e.index,
+ e.kind,
+ e.typ,
+ e.value,
)
}