(s string, depth, index int)
| 16 | } |
| 17 | |
| 18 | func delim(s string, depth, index int) token { |
| 19 | return token{ |
| 20 | delim: Delim(s[0]), |
| 21 | value: RawValue(s), |
| 22 | depth: depth, |
| 23 | index: index, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func key(v string, depth, index int) token { |
| 28 | return token{ |
no test coverage detected
searching dependent graphs…