Skip to content

Commit

Permalink
Add missing xmldoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Washi1337 committed Mar 10, 2024
1 parent f980531 commit 6618208
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ public class CilExecutionContext
/// <summary>
/// Creates a new execution context for CIL instructions.
/// </summary>
/// <param name="machine">The parent machine the instruction is executed on.</param>
/// <param name="thread">The parent thread the instruction is executed on.</param>
/// <param name="cancellationToken">A token used for canceling the emulation.</param>
public CilExecutionContext(CilThread thread, CancellationToken cancellationToken)
{
Thread = thread;
CancellationToken = cancellationToken;
}

/// <summary>
/// Gets the parent thread the instruction is executed on.
/// </summary>
public CilThread Thread
{
get;
Expand Down

0 comments on commit 6618208

Please sign in to comment.