diff --git a/src/Platforms/Echo.Platforms.AsmResolver/Emulation/Dispatch/CilExecutionContext.cs b/src/Platforms/Echo.Platforms.AsmResolver/Emulation/Dispatch/CilExecutionContext.cs index 001842da..8c66e367 100644 --- a/src/Platforms/Echo.Platforms.AsmResolver/Emulation/Dispatch/CilExecutionContext.cs +++ b/src/Platforms/Echo.Platforms.AsmResolver/Emulation/Dispatch/CilExecutionContext.cs @@ -11,7 +11,7 @@ public class CilExecutionContext /// /// Creates a new execution context for CIL instructions. /// - /// The parent machine the instruction is executed on. + /// The parent thread the instruction is executed on. /// A token used for canceling the emulation. public CilExecutionContext(CilThread thread, CancellationToken cancellationToken) { @@ -19,6 +19,9 @@ public CilExecutionContext(CilThread thread, CancellationToken cancellationToken CancellationToken = cancellationToken; } + /// + /// Gets the parent thread the instruction is executed on. + /// public CilThread Thread { get;