()
| 80632 | } |
| 80633 | |
| 80634 | function block_comment() { |
| 80635 | if(c === '/' && last === '*') { |
| 80636 | content.push(c) |
| 80637 | token(content.join('')) |
| 80638 | mode = NORMAL |
| 80639 | return i + 1 |
| 80640 | } |
| 80641 | |
| 80642 | if(c === '\n') ++line |
| 80643 | |
| 80644 | content.push(c) |
| 80645 | last = c |
| 80646 | return i + 1 |
| 80647 | } |
| 80648 | |
| 80649 | function operator() { |
| 80650 | if(last === '.' && /\d/.test(c)) { |