Simplify some cases that use return None to use ?
This commit is contained in:
parent
de5e5863aa
commit
d14ca05d6b
3 changed files with 3 additions and 14 deletions
|
@ -194,10 +194,7 @@ fn get_highest_syntax_node_at_bytepos(syntax: &Syntax, pos: usize) -> Option<Nod
|
|||
let tree = syntax.tree();
|
||||
|
||||
// named_descendant
|
||||
let mut node = match tree.root_node().descendant_for_byte_range(pos, pos) {
|
||||
Some(node) => node,
|
||||
None => return None,
|
||||
};
|
||||
let mut node = tree.root_node().descendant_for_byte_range(pos, pos)?;
|
||||
|
||||
while let Some(parent) = node.parent() {
|
||||
if parent.start_byte() == node.start_byte() {
|
||||
|
|
|
@ -165,10 +165,7 @@ fn get_breakpoint_at_current_line(editor: &mut Editor) -> Option<(usize, Breakpo
|
|||
let text = doc.text().slice(..);
|
||||
|
||||
let line = doc.selection(view.id).primary().cursor_line(text);
|
||||
let path = match doc.path() {
|
||||
Some(path) => path,
|
||||
None => return None,
|
||||
};
|
||||
let path = doc.path()?;
|
||||
editor.breakpoints.get(path).and_then(|breakpoints| {
|
||||
let i = breakpoints.iter().position(|b| b.line == line);
|
||||
i.map(|i| (i, breakpoints[i].clone()))
|
||||
|
|
|
@ -119,12 +119,7 @@ pub fn breakpoints<'doc>(
|
|||
Box::new(move |line: usize, _selected: bool, out: &mut String| {
|
||||
let breakpoint = breakpoints
|
||||
.iter()
|
||||
.find(|breakpoint| breakpoint.line == line);
|
||||
|
||||
let breakpoint = match breakpoint {
|
||||
Some(b) => b,
|
||||
None => return None,
|
||||
};
|
||||
.find(|breakpoint| breakpoint.line == line)?;
|
||||
|
||||
let mut style = if breakpoint.condition.is_some() && breakpoint.log_message.is_some() {
|
||||
error.add_modifier(Modifier::UNDERLINED)
|
||||
|
|
Loading…
Add table
Reference in a new issue