示例#1
0
 public override void OnDoubleClick(IJumpToSource jumper)
 {
     if (Report.SourceLocation.IsAvailable)
     {
         jumper.JumpToFileLocation(
             Report.SourceLocation.Filename,
             Report.SourceLocation.Line, true);
     }
 }
示例#2
0
 private void JumpToMethod(IJumpToSource jumper, MethodMetricsReport firstMethod)
 {
     jumper.JumpToFileLocation(
         firstMethod.SourceLocation.Filename,
         firstMethod.SourceLocation.Line, true);
 }