Files
Just.Railway/Railway.SourceGenerator/IGeneratorExecutor.cs
T
just 0e7986996f
.NET Test / .NET tests (push) Successful in 2m0s
extensions rework pt1
2026-07-13 22:20:47 +04:00

9 lines
197 B
C#

using Microsoft.CodeAnalysis;
namespace Just.Railway.SourceGen;
internal interface IGeneratorExecutor
{
public abstract void Execute(IncrementalGeneratorPostInitializationContext context);
}