qamp/Qrakhen.Qamp.Core/Values/Objects/Context.cs

11 lines
310 B
C#

using Qrakhen.Qamp.Core.Collections;
namespace Qrakhen.Qamp.Core.Values.Objects;
public class Context(Function function, ValueType type = ValueType.Context) : Obj(type)
{
public Function Function = function;
public PushStack<Outer> Outers = new();
public override string ToString() => "{}";
}