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:
Родитель
8c037e7d71
Коммит
58a0319698
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче