| 59 | |
| 60 | // First tokenize and then parse the token. |
| 61 | class JsoncParser { |
| 62 | readonly #whitespace = new Set(" \t\r\n"); |
| 63 | readonly #numberEndToken = new Set([..."[]{}:,/", ...this.#whitespace]); |
| 64 | #text: string; |
nothing calls this directly
no outgoing calls
no test coverage detected