()
| 33917 | } |
| 33918 | |
| 33919 | function whitespace() { |
| 33920 | if(c === '\n') ++line |
| 33921 | |
| 33922 | if(/[^\s]/g.test(c)) { |
| 33923 | token(content.join('')) |
| 33924 | mode = NORMAL |
| 33925 | return i |
| 33926 | } |
| 33927 | content.push(c) |
| 33928 | last = c |
| 33929 | return i + 1 |
| 33930 | } |
| 33931 | |
| 33932 | function preprocessor() { |
| 33933 | if(c === '\n') ++line |