|
namespace Qrakhen.Qamp.Core.Values.Objects;
|
|
|
|
public class Extension(ValueType targetType, Function function) : Context(function)
|
|
{
|
|
public ValueType TargetType = targetType;
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{TargetType}.{Function.Name}() (Extension)";
|
|
}
|
|
}
|