Implemented variable scopes
This commit is contained in:
@ -44,7 +44,7 @@ func (f *Function) AddVariable(variable *Variable) {
|
||||
f.Comment("%s = %s (%s, %d uses)", variable.Name, variable.Value, variable.Register, variable.Alive)
|
||||
}
|
||||
|
||||
f.variables[variable.Name] = variable
|
||||
f.Scope()[variable.Name] = variable
|
||||
f.cpu.Reserve(variable.Register)
|
||||
f.cpu.Use(variable.Register)
|
||||
}
|
||||
@ -67,13 +67,13 @@ func (f *Function) useVariable(variable *Variable) {
|
||||
|
||||
// identifierExists returns true if the identifier has been defined.
|
||||
func (f *Function) identifierExists(name string) bool {
|
||||
_, exists := f.variables[name]
|
||||
variable := f.Variable(name)
|
||||
|
||||
if exists {
|
||||
if variable != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
_, exists = f.functions[name]
|
||||
_, exists := f.functions[name]
|
||||
return exists
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user