Пример #1
0
 public IAnyEventBreakpoint CreateAnyEventBreakpoint(Func <IAnyEventBreakpoint, IDebugEventContext, bool> cond) => dispatcher.UI(() => {
     var bp = new AnyEventBreakpoint(this, cond);
     if (theDebugger.IsDebugging)
     {
         Debug.Assert(breakpointsToInitialize.Count == 0);
         Initialize(bp);
     }
     else
     {
         breakpointsToInitialize.Add(bp);
     }
     return(bp);
 });
Пример #2
0
		public IAnyEventBreakpoint CreateAnyEventBreakpoint(Func<IAnyEventBreakpoint, IDebugEventContext, bool> cond) => dispatcher.UI(() => {
			var bp = new AnyEventBreakpoint(this, cond);
			if (theDebugger.IsDebugging) {
				Debug.Assert(breakpointsToInitialize.Count == 0);
				Initialize(bp);
			}
			else
				breakpointsToInitialize.Add(bp);
			return bp;
		});