obfuz/Editor/Emit/IFunction.cs

13 lines
289 B
C#
Raw Normal View History

2025-04-22 10:42:58 +08:00
using System.Collections.Generic;
namespace Obfuz.Emit
2025-04-20 14:23:40 +08:00
{
public interface IFunction
{
2025-04-20 15:20:13 +08:00
IDataNode CreateExpr(DataNodeType type, object value, CreateExpressionOptions options);
2025-04-22 10:42:58 +08:00
void Compile(CompileContext ctx, List<IDataNode> inputs, ConstValue result);
2025-04-20 14:23:40 +08:00
}
}