()
| 33947 | } |
| 33948 | |
| 33949 | function block_comment() { |
| 33950 | if(c === '/' && last === '*') { |
| 33951 | content.push(c) |
| 33952 | token(content.join('')) |
| 33953 | mode = NORMAL |
| 33954 | return i + 1 |
| 33955 | } |
| 33956 | |
| 33957 | if(c === '\n') ++line |
| 33958 | |
| 33959 | content.push(c) |
| 33960 | last = c |
| 33961 | return i + 1 |
| 33962 | } |
| 33963 | |
| 33964 | function operator() { |
| 33965 | if(last === '.' && /\d/.test(c)) { |