Removed unused struct fields

This commit is contained in:
2024-07-17 12:38:57 +02:00
parent 8ec0e02dbe
commit f4e4e49fce
3 changed files with 3 additions and 6 deletions

View File

@ -9,9 +9,9 @@ import (
// Scope represents an independent code block.
type Scope struct {
cpu.State
variables map[string]*Variable
inLoop bool
cpu.State
}
// Scope returns the current scope.
@ -37,7 +37,6 @@ func (f *Function) pushScope(body ast.AST) *Scope {
}
scope.variables[k] = &Variable{
Value: v.Value,
Name: v.Name,
Register: v.Register,
Alive: count,