()
| 1879 | return position >= this._text.length ? '\0' : this._text[position]; |
| 1880 | } |
| 1881 | _skipLine() { |
| 1882 | while (this._position < this._text.length) { |
| 1883 | if (ast._Tokenizer._isNewline(this._get(this._position))) { |
| 1884 | break; |
| 1885 | } |
| 1886 | this._position++; |
| 1887 | } |
| 1888 | } |
| 1889 | _skipWhitespace() { |
| 1890 | while (this._position < this._text.length) { |
| 1891 | const c = this._text[this._position]; |
no test coverage detected