2025-04-20 14:23:40 +08:00
|
|
|
|
namespace Obfuz.Virtualization
|
|
|
|
|
{
|
|
|
|
|
public interface IFunction
|
|
|
|
|
{
|
2025-04-20 15:20:13 +08:00
|
|
|
|
DataNodeType ReturnType { get; }
|
|
|
|
|
|
2025-04-20 14:23:40 +08:00
|
|
|
|
ConstExpression CreateCallable(IDataNode result, CreateExpressionOptions options);
|
|
|
|
|
}
|
|
|
|
|
}
|