()
| 198 | } |
| 199 | |
| 200 | parse(): unknown { |
| 201 | const value = this.parseValue() |
| 202 | this.skipWhitespace() |
| 203 | if (this.index !== this.input.length) { |
| 204 | this.fail("Unexpected flow collection content") |
| 205 | } |
| 206 | return value |
| 207 | } |
| 208 | |
| 209 | private parseValue(): unknown { |
| 210 | this.skipWhitespace() |