Files
RobustToolbox/Robust.Shared/Toolshed/Commands/Values/VarCommand.cs
Leon Friedrich 9af119f57a Toolshed Rejig (#5455)
* Toolshed Rejig

* shorten hint string

* Try fix conflicts. Ill make with work later

* bodge

* Fix ProtoIdTypeParser assert

* comment

* AllEntities

* Remove more linq from WhereCommand

* better help strings

* Add ContainsCommand

* loc strings

* Add contains command description

* Add $self variable

* Errors for writing to readonly variables

* A
2024-12-21 17:49:11 +11:00

21 lines
640 B
C#

using System;
using Robust.Shared.Toolshed.Syntax;
using Robust.Shared.Toolshed.TypeParsers;
namespace Robust.Shared.Toolshed.Commands.Values;
/// <summary>
/// Variant of the <see cref="ValCommand"/> that only works for variable references, and automatically infers the type
/// from the variable's value.
/// </summary>
[ToolshedCommand]
public sealed class VarCommand : ToolshedCommand
{
private static Type[] _parsers = [typeof(VarTypeParser)];
public override Type[] TypeParameterParsers => _parsers;
[CommandImplementation]
public T Var<T>(IInvocationContext ctx, VarRef<T> var)
=> var.Evaluate(ctx)!;
}