Pop ascends from pointers vx and vy.
(vx, vy reflect.Value)
| 379 | |
| 380 | // Pop ascends from pointers vx and vy. |
| 381 | func (p pointerPath) Pop(vx, vy reflect.Value) { |
| 382 | delete(p.mx, value.PointerOf(vx)) |
| 383 | delete(p.my, value.PointerOf(vy)) |
| 384 | } |
| 385 | |
| 386 | // isExported reports whether the identifier is exported. |
| 387 | func isExported(id string) bool { |
no test coverage detected