internal SourceStepper(RuntimeThread thread, ICorDebugStepper comStepper) { _thread = thread; _comStepper = comStepper; _comStepper.SetRangeIL(1); _comStepper.SetUnmappedStopMask(CorDebugUnmappedStop.STOP_NONE); }
// Set whether the ranges passed to StepRange are relative to the // IL code or the native code for the method being stepped in. public void SetRangeIL(bool il) { m_step.SetRangeIL(il ? 1 : 0); }
/** * Set whether the ranges passed to StepRange are relative to the * IL code or the native code for the method being stepped in. */ public void SetRangeIL(bool value) { m_step.SetRangeIL(value ? 1 : 0); }