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

@ -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()