summaryrefslogtreecommitdiff
path: root/comp/compiler.go
diff options
context:
space:
mode:
Diffstat (limited to 'comp/compiler.go')
-rw-r--r--comp/compiler.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/comp/compiler.go b/comp/compiler.go
index 4817914..37ed0bd 100644
--- a/comp/compiler.go
+++ b/comp/compiler.go
@@ -262,7 +262,6 @@ func (c *Compiler) Generate(tokens parser.Tokens) (err error) {
// It could be either an undefined symbol or a key ident in a literal composite expr.
s = &symbol.Symbol{Name: t.Str}
}
- log.Println("Ident symbol", t.Str, s.Local, s.Index, s.Type)
push(s)
if s.Kind == symbol.Pkg || s.Kind == symbol.Unset {
break