mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
simplify is_exit
check
This commit is contained in:
parent
b75803ad31
commit
41fda76152
@ -21,10 +21,7 @@ pub(crate) fn stdio_transport() -> (Sender<Message>, Receiver<Message>, IoThread
|
||||
let stdin = stdin();
|
||||
let mut stdin = stdin.lock();
|
||||
while let Some(msg) = Message::read(&mut stdin)? {
|
||||
let is_exit = match &msg {
|
||||
Message::Notification(n) => n.is_exit(),
|
||||
_ => false,
|
||||
};
|
||||
let is_exit = matches!(&msg, Message::Notification(n) if n.is_exit());
|
||||
|
||||
reader_sender.send(msg).unwrap();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user