()
| 138 | } |
| 139 | |
| 140 | private consumeWhitespaces() { |
| 141 | for (;;) { |
| 142 | let code = this.text.charCodeAt(this.position); |
| 143 | if (code === CharCode.space) { |
| 144 | this.position++; |
| 145 | } else if (code === CharCode.newline) { |
| 146 | this.position++; |
| 147 | this.currentLine++; |
| 148 | this.currentLineGlobalPosition = this.position; |
| 149 | } else { |
| 150 | break; |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | } |
no outgoing calls
no test coverage detected