| 76 | } |
| 77 | |
| 78 | MappedWstring EditorInterface::get_mapped_wstring_line(TextPosition line) { |
| 79 | auto result = to_mapped_wstring(get_line(line));; |
| 80 | auto line_start = get_line_start_position(line); |
| 81 | for (auto &val : result.mapping) |
| 82 | val += line_start; |
| 83 | return result; |
| 84 | } |
no test coverage detected