This commit is contained in:
Pantazis Deligiannis 2023-01-30 22:24:17 -08:00
Родитель 7879259a30
Коммит b68d96aec2
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -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;
}
}
}
}