(key string)
| 36 | const dashToken = "-" |
| 37 | |
| 38 | func errNoKey(key string) error { |
| 39 | return fmt.Errorf("object has no key %q: %w", key, ErrPointer) |
| 40 | } |
| 41 | |
| 42 | func errOutOfBounds(length, idx int) error { |
| 43 | return fmt.Errorf("index out of bounds array[0,%d] index '%d': %w", length-1, idx, ErrPointer) |
no outgoing calls
no test coverage detected
searching dependent graphs…