(position)
| 1914 | } |
| 1915 | } |
| 1916 | _newLine(position) { |
| 1917 | if ((this._get(position) === '\n' && this._get(position + 1) === '\r') || (this._get(position) === '\r' && this._get(position + 1) === '\n')) { |
| 1918 | return position + 2; |
| 1919 | } |
| 1920 | return position + 1; |
| 1921 | } |
| 1922 | _tokenize() { |
| 1923 | if (this._token.type !== '\n') { |
| 1924 | this._skipWhitespace(); |
no test coverage detected