We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d42bdf commit fa32ef9Copy full SHA for fa32ef9
test/FastExpressionCompiler.UnitTests/TestTools.cs
@@ -79,7 +79,7 @@ public static StringBuilder ToILString(this MethodInfo method, StringBuilder s =
79
else if (il is ShortInlineBrTargetInstruction sbr)
80
s.Append(' ').Append(sbr.TargetOffset);
81
else if (il is InlineStringInstruction si)
82
- s.Append(' ').Append(si.String);
+ s.Append(" \"").Append(si.String).Append('"');
83
else if (il is InlineIInstruction ii)
84
s.Append(' ').Append(ii.Int32);
85
else if (il is ShortInlineIInstruction sii)
0 commit comments