This commit is contained in:
Родитель
7879259a30
Коммит
b68d96aec2
|
@ -201,5 +201,18 @@ namespace Microsoft.Coyote.Runtime
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Registers the method invoked by the currently executing operation.
|
||||
/// </summary>
|
||||
public static void RegisterCallSite(string method)
|
||||
{
|
||||
var runtime = CoyoteRuntime.Current;
|
||||
if (runtime.SchedulingPolicy != SchedulingPolicy.None &&
|
||||
runtime.TryGetExecutingOperation(out ControlledOperation current))
|
||||
{
|
||||
current.LastCallSite = method;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче