()
| 80615 | } |
| 80616 | |
| 80617 | function preprocessor() { |
| 80618 | if(c === '\n') ++line |
| 80619 | |
| 80620 | if(c === '\n' && last !== '\\') { |
| 80621 | token(content.join('')) |
| 80622 | mode = NORMAL |
| 80623 | return i |
| 80624 | } |
| 80625 | content.push(c) |
| 80626 | last = c |
| 80627 | return i + 1 |
| 80628 | } |
| 80629 | |
| 80630 | function line_comment() { |
| 80631 | return preprocessor() |
no test coverage detected