obfuz/Editor/Emit/IFunction.cs

13 lines
289 B
C#

using System.Collections.Generic;
namespace Obfuz.Emit
{
public interface IFunction
{
IDataNode CreateExpr(DataNodeType type, object value, CreateExpressionOptions options);
void Compile(CompileContext ctx, List<IDataNode> inputs, ConstValue result);
}
}