()
| 157 | } |
| 158 | |
| 159 | private handleWhitespace() { |
| 160 | const wsMatch = /^\s+/.exec(this.rest); |
| 161 | if (wsMatch) { |
| 162 | this.rest = this.rest.slice(wsMatch[0].length); |
| 163 | ++this.position; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | private handleNonDoubleQuote(nextMatch: RegExpExecArray) { |
| 168 | this.addResult(this.rest.slice(0, nextMatch.index)); |