| 804 | func nameArguments(goroutines []*Goroutine) { |
| 805 | // Set a name for any pointer occurring more than once. |
| 806 | type object struct { |
| 807 | args []*Arg |
| 808 | inPrimary bool |
| 809 | } |
| 810 | objects := map[uint64]object{} |
| 811 | // Enumerate all the arguments. |
| 812 | primary := true |
nothing calls this directly
no outgoing calls
no test coverage detected