@param {string} str
(str)
| 105 | |
| 106 | /** @param {string} str */ |
| 107 | static setSource(str) { |
| 108 | this.parserPosition = 0; |
| 109 | this.sourceString = str; |
| 110 | this.sourceLength = str.length; |
| 111 | } |
| 112 | static get isDone() { |
| 113 | return this.parserPosition >= this.sourceLength; |
| 114 | } |
no outgoing calls