mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* 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
25 lines
762 B
C#
25 lines
762 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Robust.Shared.Toolshed.Syntax;
|
|
|
|
namespace Robust.Shared.Toolshed.Commands.Generic.Variables ;
|
|
|
|
[ToolshedCommand(Name = "=>")]
|
|
public sealed class ArrowCommand : ToolshedCommand
|
|
{
|
|
[CommandImplementation, TakesPipedTypeAsGeneric]
|
|
public T Arrow<T>(IInvocationContext ctx, [PipedArgument] T input, WriteableVarRef<T> var)
|
|
{
|
|
ctx.WriteVar(var.Inner.VarName, input);
|
|
return input;
|
|
}
|
|
|
|
[CommandImplementation, TakesPipedTypeAsGeneric]
|
|
public List<T> Arrow<T>(IInvocationContext ctx, [PipedArgument] IEnumerable<T> input, WriteableVarRef<List<T>> var)
|
|
{
|
|
var list = input.ToList();
|
|
ctx.WriteVar(var.Inner.VarName, list);
|
|
return list;
|
|
}
|
|
}
|