(c)
| 1812 | return this._position - this.linepos + 1; |
| 1813 | } |
| 1814 | static _isSpace(c) { |
| 1815 | if (c === ' ' || c === '\t' || c === '\v' || c === '\f' || c === '\xA0') { |
| 1816 | return true; |
| 1817 | } |
| 1818 | if (c.charCodeAt(0) >= 0x1680) { |
| 1819 | return ast._Tokenizer._whitespace.test(c); |
| 1820 | } |
| 1821 | return false; |
| 1822 | } |
| 1823 | static _isNewline(c) { |
| 1824 | switch (c) { |
| 1825 | case '\n': |
no outgoing calls
no test coverage detected