12 lines
336 B
C#
12 lines
336 B
C#
using Qrakhen.Qamp.Core.Collections;
|
|
using Qrakhen.Qamp.Core.Execution;
|
|
|
|
namespace Qrakhen.Qamp.Core.Values.Objects;
|
|
|
|
public class Closure(Function function) : Obj(ValueType.Context)
|
|
{
|
|
public Function Function = function;
|
|
public StackRegister<OuterWrapper> PreValues = new();
|
|
|
|
public override string ToString() => "{}";
|
|
} |