9 lines
195 B
C#
9 lines
195 B
C#
using Microsoft.CodeAnalysis;
|
|
|
|
namespace Just.Railway.SourceGen;
|
|
|
|
internal interface IGeneratorExecutor
|
|
{
|
|
public abstract void Execute(SourceProductionContext context, Compilation source);
|
|
}
|