using System; using Robust.Shared.Console; using Robust.Shared.ContentPack; namespace Robust.Client.Console.Commands { #if DEBUG internal sealed class DumpMetadataMembersCommand : IConsoleCommand { public string Command => "dmetamem"; public string Description => "Dumps a type's members in a format suitable for the sandbox configuration file."; public string Help => "Usage: dmetamem "; public void Execute(IConsoleShell shell, string argStr, string[] args) { var type = Type.GetType(args[0]); if (type == null) { shell.WriteError("That type does not exist"); return; } foreach (var sig in AssemblyTypeChecker.DumpMetaMembers(type)) { System.Console.WriteLine(@$"- ""{sig}"""); shell.WriteLine(sig); } } } #endif }