()
| 80602 | } |
| 80603 | |
| 80604 | function whitespace() { |
| 80605 | if(c === '\n') ++line |
| 80606 | |
| 80607 | if(/[^\s]/g.test(c)) { |
| 80608 | token(content.join('')) |
| 80609 | mode = NORMAL |
| 80610 | return i |
| 80611 | } |
| 80612 | content.push(c) |
| 80613 | last = c |
| 80614 | return i + 1 |
| 80615 | } |
| 80616 | |
| 80617 | function preprocessor() { |
| 80618 | if(c === '\n') ++line |