(stream, context)
| 77 | }; |
| 78 | |
| 79 | var nextComment = function(stream, context) { |
| 80 | stream.eatWhile(/[^"]/); |
| 81 | return new Token('comment', stream.eat('"') ? context.parent : context, true); |
| 82 | }; |
| 83 | |
| 84 | var nextString = function(stream, context) { |
| 85 | stream.eatWhile(/[^']/); |