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 info = theme.get("info");
|
||||
|
||||
let breakpoints = doc
|
||||
.path()
|
||||
.and_then(|path| editor.breakpoints.get(path))
|
||||
.unwrap();
|
||||
let breakpoints = doc.path().and_then(|path| editor.breakpoints.get(path));
|
||||
|
||||
let breakpoints = match breakpoints {
|
||||
Some(breakpoints) => breakpoints,
|
||||
None => return Box::new(move |_, _, _| None),
|
||||
};
|
||||
|
||||
Box::new(move |line: usize, _selected: bool, out: &mut String| {
|
||||
let breakpoint = breakpoints
|
||||
|
|
Loading…
Reference in a new issue