(stream)
| 58 | } |
| 59 | |
| 60 | function parseArr(stream) { |
| 61 | stream.ahead(1) |
| 62 | let arr = [] |
| 63 | for (;;) { |
| 64 | if (stream.next == 93) break |
| 65 | arr.push(parseValue(stream)) |
| 66 | if (stream.next == 44) stream.ahead(1) |
| 67 | } |
| 68 | stream.ahead(1) |
| 69 | return arr |
| 70 | } |
| 71 | |
| 72 | function parseStr(stream) { |
| 73 | let start = stream.pos |
no test coverage detected