make it build again

This commit is contained in:
Pascal Hertleif 2019-05-26 11:56:31 +02:00
parent 2b200f6e1a
commit 5abcca516d
No known key found for this signature in database
GPG key ID: EDBB1A8D2047A074
3 changed files with 28 additions and 14 deletions

View file

@ -875,7 +875,7 @@ fn highlight(world: &ServerWorld, file_id: FileId) -> Result<Vec<Decoration>> {
.map(|h| Decoration {
range: h.range.conv_with(&line_index),
tag: h.tag,
id: h.id.map(|x| x.to_string()),
id: h.binding_hash.map(|x| x.to_string()),
})
.collect();
Ok(res)