Rename HeapItem to HeapEntry

This commit is contained in:
2018-07-07 18:58:50 +01:00
parent bbf8623513
commit b4dde18179
5 changed files with 27 additions and 27 deletions

9
heap_entry.go Normal file
View File

@@ -0,0 +1,9 @@
package main
//go:generate easyjson -all heap_entry.go
// HeapEntry is a parsed heap item object
type HeapEntry struct {
Address string `json:"address"`
Type string `json:"type"`
}