Esempio n. 1
0
 public void DoBreakpointHit(string file, int line, IMethodMirror method)
 {
     if (BreakpointHit != null)
     {
         BreakpointHit(new BreakpointEvent(new Location(file, line), method));
     }
 }
Esempio n. 2
0
 public BreakpointEvent(ILocation location, IMethodMirror method)
 {
     Location = location;
     Method   = method;
 }
Esempio n. 3
0
 private ILocation BestLocationIn(IMethodMirror method, IBreakpoint bp)
 {
     return method.Locations.FirstOrDefault (l => l.SourceFile == bp.Location.SourceFile && l.LineNumber == bp.Location.LineNumber);
 }
Esempio n. 4
0
		public void DoBreakpointHit (string file, int line, IMethodMirror method)
		{
			if (BreakpointHit != null)
				BreakpointHit (new BreakpointEvent (new Location (file, line), method));
		}
Esempio n. 5
0
 private ILocation BestLocationIn(IMethodMirror method, IBreakpoint bp)
 {
     return(method.Locations.FirstOrDefault(l => l.SourceFile == bp.Location.SourceFile && l.LineNumber == bp.Location.LineNumber));
 }
Esempio n. 6
0
 public BreakpointEvent(ILocation location, IMethodMirror method)
 {
     Location = location;
     Method = method;
 }