(ch)
| 127 | return str; |
| 128 | } |
| 129 | function read_string(ch) { |
| 130 | return { |
| 131 | type: "str", |
| 132 | value: read_escaped(ch) , |
| 133 | poi:{ |
| 134 | line:start.line, |
| 135 | start:start.column, |
| 136 | end:input.poi().column |
| 137 | } |
| 138 | }; |
| 139 | } |
| 140 | function read_indentation(predicate) { |
| 141 | var str = ""; |
| 142 | input.next() |
no test coverage detected