(path string)
| 18 | } |
| 19 | |
| 20 | func NewXRay(path string) XRay { |
| 21 | return XRay{path} |
| 22 | } |
| 23 | |
| 24 | func (n XRay) traverse(stack []common.Pgid, visited map[common.Pgid]struct{}, callback func(page *common.Page, stack []common.Pgid) error) error { |
| 25 | pgid := stack[len(stack)-1] |
no outgoing calls