(stream,state)
| 60 | return"error"; |
| 61 | } |
| 62 | function tokenLineComment(stream,state){ |
| 63 | return stream.skipToEnd(),/\/\s*$/.test(stream.current())?(state.tokenize=tokenBlockComment)(stream,state):(state.tokenize=tokenBase),"comment"; |
| 64 | } |
| 65 | function tokenBlockComment(stream,state){ |
| 66 | var f=stream.sol()&&stream.peek()=="\\"; |
| 67 | stream.skipToEnd(); |
nothing calls this directly
no outgoing calls
no test coverage detected