(v string, depth, index int)
| 25 | } |
| 26 | |
| 27 | func key(v string, depth, index int) token { |
| 28 | return token{ |
| 29 | value: RawValue(v), |
| 30 | depth: depth, |
| 31 | index: index, |
| 32 | isKey: true, |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | func value(v string, depth, index int) token { |
| 37 | return token{ |
no test coverage detected