aesi-eclipse / com.virtlink.aesi.debugging
Package com.virtlink.aesi.debugging
Types
AbstractDebugger | abstract class AbstractDebugger : IDebugger Abstract base class for debuggers. The debugger must call the [`#fireThreadCreated`](#) and #fireThreadDestroyed methods for any threads that are created or destroyed after the debugger has been attached and before the debugger has been detached. Then, for each thread created, the debugger must call either the [`#fireThreadResumed`](#) or the #fireThreadSuspended methods to indicate the running state of the thread. |
AbstractSyncDebugger | abstract class AbstractSyncDebugger : AbstractAsyncDebugger Executes synchronous actions asynchronously. |
IAttachOptions | interface IAttachOptions Options for attaching to a program. |
IDebugSession | interface IDebugSession A debug session. |
IDebuggerCapabilities | interface IDebuggerCapabilities Specifies the capabilities of the debugger. |
IEvaluator | interface IEvaluator Evaluates expressions. |
IProcess | interface IProcess Created by daniel on 6/29/17. |
IValue | interface IValue A value. |
ThreadState | class ThreadState Specifies the state of a thread. |