()
| 32 | let skipWhitespace = () => { let start = pos; do {} while (whiteRe.test(next())); return pos !== start + 1; }; |
| 33 | |
| 34 | let eatComment = () => { |
| 35 | let start = pos; next(); |
| 36 | while (next()) { if (ch === "*" && peek() === "/") { pos++; break; } } |
| 37 | return source_text.substring(start, pos + 1); |
| 38 | }; |
| 39 | |
| 40 | let lookBack = (str) => source_text.substring(pos - str.length, pos).toLowerCase() === str; |
| 41 |
no test coverage detected