Remove panic when guest attempts to go to definition

We'll implement this soon but want to merge something stable to main.

Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
Nathan Sobo 2022-01-21 11:24:05 -07:00
parent 19751e9200
commit 3ecb7e81f1

View file

@ -819,7 +819,8 @@ impl Project {
Ok(definitions)
})
} else {
todo!()
log::info!("go to definition is not yet implemented for guests");
Task::ready(Ok(Default::default()))
}
}