mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 22:13:39 +00:00
Merge #7322
7322: Use assert_never properly r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
1b5405620f
1 changed files with 3 additions and 1 deletions
|
@ -398,7 +398,9 @@ impl Builder {
|
||||||
pub(crate) fn set_detail(mut self, detail: Option<impl Into<String>>) -> Builder {
|
pub(crate) fn set_detail(mut self, detail: Option<impl Into<String>>) -> Builder {
|
||||||
self.detail = detail.map(Into::into);
|
self.detail = detail.map(Into::into);
|
||||||
if let Some(detail) = &self.detail {
|
if let Some(detail) = &self.detail {
|
||||||
assert_never!(detail.contains('\n'), "multiline detail: {}", detail);
|
if assert_never!(detail.contains('\n'), "multiline detail: {}", detail) {
|
||||||
|
self.detail = Some(detail.splitn(2, '\n').next().unwrap().to_string());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue