(c byte)
| 209 | } |
| 210 | |
| 211 | func isJSONWhitespace(c byte) bool { |
| 212 | return c == ' ' || c == '\t' || c == '\n' || c == '\r' |
| 213 | } |
| 214 | |
| 215 | // "Constructor", parses the given string JSON pointer. |
| 216 | func (p *Pointer) parse(jsonPointerString string) error { |
no outgoing calls
no test coverage detected
searching dependent graphs…