Removed unused struct fields

This commit is contained in:
Eduard Urbach 2024-07-17 12:38:57 +02:00
parent 055d628130
commit 58eed722c1
Signed by: eduard
GPG key ID: 49226B848C78F6C8
3 changed files with 3 additions and 6 deletions

View file

@ -41,7 +41,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
func (f *Function) AddVariable(variable *Variable) {
if config.Comments {
f.Comment("%s = %s (%s, %d uses)", variable.Name, variable.Value, variable.Register, variable.Alive)
f.Comment("%s = %s (%d uses)", variable.Name, variable.Register, variable.Alive)
}
scope := f.Scope()