mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-24 19:30:34 +00:00
compiler: walk over functions in reproducible order, fix #3219
It affects both Debug data and bindings, otherwise two unnamed structures can get any of unnamed/unnamedx names depending on particular invocation. Signed-off-by: Roman Khimov <roman@nspcc.ru>
This commit is contained in:
parent
25ef2c7f16
commit
341d978e5b
1 changed files with 7 additions and 6 deletions
|
@ -203,18 +203,19 @@ func (c *codegen) emitDebugInfo(contract []byte) *DebugInfo {
|
|||
})
|
||||
}
|
||||
|
||||
start := len(d.Methods)
|
||||
d.NamedTypes = make(map[string]binding.ExtendedType)
|
||||
var fnames = make([]string, 0, len(c.funcs))
|
||||
for name, scope := range c.funcs {
|
||||
if scope.rng.Start == scope.rng.End {
|
||||
continue
|
||||
}
|
||||
m := c.methodInfoFromScope(name, scope, d.NamedTypes)
|
||||
fnames = append(fnames, name)
|
||||
}
|
||||
sort.Strings(fnames)
|
||||
d.NamedTypes = make(map[string]binding.ExtendedType)
|
||||
for _, name := range fnames {
|
||||
m := c.methodInfoFromScope(name, c.funcs[name], d.NamedTypes)
|
||||
d.Methods = append(d.Methods, *m)
|
||||
}
|
||||
sort.Slice(d.Methods[start:], func(i, j int) bool {
|
||||
return d.Methods[start+i].Name.Name < d.Methods[start+j].Name.Name
|
||||
})
|
||||
d.EmittedEvents = c.emittedEvents
|
||||
d.InvokedContracts = c.invokedContracts
|
||||
return d
|
||||
|
|
Loading…
Reference in a new issue