()
| 434 | } |
| 435 | |
| 436 | func (i MapAccessPrestring) String() string { |
| 437 | var sb strings.Builder |
| 438 | sb.WriteString("keyed into") |
| 439 | sb.WriteString(i.AssignmentStr) |
| 440 | return sb.String() |
| 441 | } |
| 442 | |
| 443 | // MapWrittenTo is when a map value flows to a point where one of its indices is written to, and thus |
| 444 | // must be non-nil |
nothing calls this directly
no test coverage detected