dap: Prevent crashes on files with no name or breakpoints
This commit is contained in:
parent
30ac5869df
commit
d906911417
1 changed files with 6 additions and 4 deletions
|
@ -109,10 +109,12 @@ pub fn breakpoints<'doc>(
|
||||||
let error = theme.get("error");
|
let error = theme.get("error");
|
||||||
let info = theme.get("info");
|
let info = theme.get("info");
|
||||||
|
|
||||||
let breakpoints = doc
|
let breakpoints = doc.path().and_then(|path| editor.breakpoints.get(path));
|
||||||
.path()
|
|
||||||
.and_then(|path| editor.breakpoints.get(path))
|
let breakpoints = match breakpoints {
|
||||||
.unwrap();
|
Some(breakpoints) => breakpoints,
|
||||||
|
None => return Box::new(move |_, _, _| None),
|
||||||
|
};
|
||||||
|
|
||||||
Box::new(move |line: usize, _selected: bool, out: &mut String| {
|
Box::new(move |line: usize, _selected: bool, out: &mut String| {
|
||||||
let breakpoint = breakpoints
|
let breakpoint = breakpoints
|
||||||
|
|
Loading…
Add table
Reference in a new issue