Ejemplo n.º 1
0
        public override DbgEngineStepper CreateStepper(DbgThread thread)
        {
            var data = thread.GetData <DbgThreadData>();

            return(new DbgEngineStepperImpl(dbgDotNetCodeRangeService, this, thread, data.MonoThread));
        }
Ejemplo n.º 2
0
 internal DnThread GetThread(DbgThread thread) =>
 thread?.GetData <DbgThreadData>()?.DnThread ?? throw new InvalidOperationException();
Ejemplo n.º 3
0
        public override DbgEngineStepper CreateStepper(DbgThread thread)
        {
            var data = thread.GetData <DbgThreadData>();

            return(dbgEngineStepperFactory.Create(DotNetRuntime, new DbgDotNetEngineStepperImpl(this), thread));
        }