(ch)
| 135 | return str; |
| 136 | } |
| 137 | function read_string(ch) { |
| 138 | return { |
| 139 | type: "str", |
| 140 | value: read_escaped(ch) , |
| 141 | poi:{ |
| 142 | line:start.line, |
| 143 | start:start.column, |
| 144 | end:input.poi().column |
| 145 | } |
| 146 | }; |
| 147 | } |
| 148 | function skip_comment() { |
| 149 | read_while(function(ch){ return ch != "\n" }); |
| 150 | input.next(); |
no test coverage detected