10 lines
209 B
C#
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);
|
|
}
|