9 lines
155 B
C#
9 lines
155 B
C#
namespace Microsoft.CodeAnalysis.FlowAnalysis;
|
|
|
|
public interface IFlowCaptureOperation : IOperation
|
|
{
|
|
CaptureId Id { get; }
|
|
|
|
IOperation Value { get; }
|
|
}
|