Example #1
0
 public static void OnExecutionChanged(object sender, ExecutionPointerChangedEventArgs ea)
 {
     ExecutionChanged?.Invoke(sender, ea);
 }
Example #2
0
        private static void ExpressionEvaluator_ExecutionPointerChanged(object sender, ExecutionPointerChangedEventArgs ea)
        {
            if (!Debugging)
            {
                return;
            }

            OnExecutionChanged(sender, ea);
        }