Files
Just.Railway/Railway.SourceGenerator/IGeneratorExecutor.cs
JustFixMe 6726ba07b3
All checks were successful
.NET Test / test (push) Successful in 4m41s
added Bind, Map and Match extensions generators
2023-11-28 21:41:01 +04:00

10 lines
209 B
C#

using System;
using Microsoft.CodeAnalysis;
namespace Just.Railway.SourceGen;
internal interface IGeneratorExecutor
{
public abstract void Execute(SourceProductionContext context, Compilation source);
}