(position)
| 1876 | return false; |
| 1877 | } |
| 1878 | _get(position) { |
| 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))) { |
no outgoing calls
no test coverage detected