@param {string} thisCharacter
(thisCharacter, skipOverIt = true)
| 139 | } |
| 140 | /** @param {string} thisCharacter */ |
| 141 | static skipUntil(thisCharacter, skipOverIt = true) { |
| 142 | while (this.currentCharacter !== thisCharacter && !this.isDone) |
| 143 | this.parserPosition++; |
| 144 | if (skipOverIt) this.parserPosition++; |
| 145 | } |
| 146 | /** @param {string} thisCharacter */ |
| 147 | static readUntil(thisCharacter, skipOverIt = true) { |
| 148 | let token = ''; |
no outgoing calls
no test coverage detected