Separated compiler into its own package
This commit is contained in:
@ -63,6 +63,10 @@ func (f *Function) useVariable(variable *Variable) {
|
||||
continue
|
||||
}
|
||||
|
||||
if config.Comments {
|
||||
f.Comment("%s (%s) used in scope %d", local.Name, local.Register, i)
|
||||
}
|
||||
|
||||
local.Alive--
|
||||
|
||||
if local.Alive < 0 {
|
||||
@ -71,7 +75,7 @@ func (f *Function) useVariable(variable *Variable) {
|
||||
|
||||
if local.Alive == 0 {
|
||||
if config.Comments {
|
||||
f.Comment("%s died (%s) in scope %d", local.Name, local.Register, i)
|
||||
f.Comment("%s (%s) died in scope %d", local.Name, local.Register, i)
|
||||
}
|
||||
|
||||
scope.Free(local.Register)
|
||||
@ -87,7 +91,7 @@ func (f *Function) identifierExists(name string) bool {
|
||||
return true
|
||||
}
|
||||
|
||||
_, exists := f.functions[name]
|
||||
_, exists := f.Functions[name]
|
||||
return exists
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user