(length, idx int)
| 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) |
| 44 | } |
| 45 | |
| 46 | func errInvalidReference(token string) error { |
| 47 | return fmt.Errorf("invalid token reference %q: %w", token, ErrPointer) |
no outgoing calls
no test coverage detected
searching dependent graphs…