Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs b/src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs
index 03fc460d258..28b9818c3af 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/MethodILDebugView.cs
@@ -33,20 +33,20 @@ namespace Internal.IL
if (!owningMethod.Signature.IsStatic)
sb.Append("instance ");
disasm.AppendType(sb, owningMethod.Signature.ReturnType);
- sb.Append(" ");
+ sb.Append(' ');
sb.Append(owningMethod.Name);
if (owningMethod.HasInstantiation)
{
- sb.Append("<");
+ sb.Append('<');
for (int i = 0; i < owningMethod.Instantiation.Length; i++)
{
if (i != 0)
sb.Append(", ");
disasm.AppendType(sb, owningMethod.Instantiation[i]);
}
- sb.Append(">");
+ sb.Append('>');
}
- sb.Append("(");
+ sb.Append('(');
for (int i = 0; i < owningMethod.Signature.Length; i++)
{
if (i != 0)
@@ -71,7 +71,7 @@ namespace Internal.IL
if (_methodIL.IsInitLocals)
sb.Append("init ");
- sb.Append("(");
+ sb.Append('(');
for (int i = 0; i < locals.Length; i++)
{
@@ -81,7 +81,7 @@ namespace Internal.IL
sb.Append(' ', 6);
}
disasm.AppendType(sb, locals[i].Type);
- sb.Append(" ");
+ sb.Append(' ');
if (locals[i].IsPinned)
sb.Append("pinned ");
sb.Append("V_");
@@ -101,7 +101,7 @@ namespace Internal.IL
ILDisassembler.AppendOffset(sb, region.TryOffset);
sb.Append(" to ");
ILDisassembler.AppendOffset(sb, region.TryOffset + region.TryLength);
-
+
switch (region.Kind)
{
case ILExceptionRegionKind.Catch: