()
| 33930 | } |
| 33931 | |
| 33932 | function preprocessor() { |
| 33933 | if(c === '\n') ++line |
| 33934 | |
| 33935 | if(c === '\n' && last !== '\\') { |
| 33936 | token(content.join('')) |
| 33937 | mode = NORMAL |
| 33938 | return i |
| 33939 | } |
| 33940 | content.push(c) |
| 33941 | last = c |
| 33942 | return i + 1 |
| 33943 | } |
| 33944 | |
| 33945 | function line_comment() { |
| 33946 | return preprocessor() |
no test coverage detected