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 Outers = new(); public override string ToString() => "{}"; }