(p string)
| 531 | } |
| 532 | |
| 533 | func nextPathPart(p string) (next, remaining string) { |
| 534 | for i, r := range p { |
| 535 | if r == '.' { |
| 536 | return p[:i], p[i+1:] |
| 537 | } |
| 538 | } |
| 539 | return p, "" |
| 540 | } |
| 541 | |
| 542 | type nilField struct { |
| 543 | prop Property |
no outgoing calls
no test coverage detected
searching dependent graphs…