Fix null reference in debugger (#3517)

This commit is contained in:
Dong Lei 2020-03-08 01:16:46 +08:00 коммит произвёл GitHub
Родитель 25bd4cd8f3
Коммит 8998621f01
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -228,7 +228,7 @@ namespace Microsoft.Bot.Builder.Dialogs.Debugging
options = from sourceItem in sourceByItem
let source = sourceItem.Value
where PathEquals(source.Path, row.Source.Path)
where source.StartPoint.LineIndex <= row.SourceBreakpoint.Line && source.EndPoint.LineIndex >= row.SourceBreakpoint.Line
where source.StartPoint?.LineIndex <= row.SourceBreakpoint.Line && source.EndPoint?.LineIndex >= row.SourceBreakpoint.Line
let distance = row.SourceBreakpoint.Line - source.StartPoint.LineIndex
orderby distance
select sourceItem;

Просмотреть файл

@ -18,9 +18,8 @@
"args": [
"run",
"--no-build",
"--",
"--debugport",
"0"
"--root",
"${workspaceFolder}/Samples"
]
},
{