1 parent a61b646 commit 5eceb21Copy full SHA for 5eceb21
2 files changed
Torch/Managers/PatchManager/MSIL/MsilArgument.cs
@@ -45,5 +45,11 @@ public MsilArgument(int position)
45
Type = null;
46
Name = null;
47
}
48
+
49
+ /// <inheritdoc/>
50
+ public override string ToString()
51
+ {
52
+ return $"arg{Position:X4}({Type?.Name ?? "unknown"})";
53
+ }
54
55
Torch/Managers/PatchManager/MSIL/MsilLocal.cs
@@ -52,5 +52,11 @@ public MsilLocal(int index)
56
57
58
59
+ return $"lcl{Index:X4}({Type?.Name ?? "unknown"})";
60
61
62
0 commit comments