Removed unused struct fields
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user