(v string, depth, index int)
| 34 | } |
| 35 | |
| 36 | func value(v string, depth, index int) token { |
| 37 | return token{ |
| 38 | value: RawValue(v), |
| 39 | depth: depth, |
| 40 | index: index, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func tokenize(t *testing.T, b []byte) (tokens []token) { |
| 45 | tok := NewTokenizer(b) |
no test coverage detected
searching dependent graphs…