change to start <= line <= end (#3078)

* change to start <= line <= end

* trick build to execute

Co-authored-by: Tom Laird-McConnell <tomlm@microsoft.com>
This commit is contained in:
xieofxie 2019-12-20 10:33:14 +08:00 коммит произвёл Tom Laird-McConnell
Родитель 8c037e7d71
Коммит 58a0319698
2 изменённых файлов: 2 добавлений и 4 удалений

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

@ -6,5 +6,3 @@ consolidating using generics with POCO objects and shared base class
## 4.0.0-alpha201802027a
* Milan release

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

@ -228,8 +228,8 @@ 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
let distance = Math.Abs(source.StartPoint.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;
}