Browse Source

I just discovered that we do have un-inlining implemented... let's mention it where it's more likely to be found in the future.

pull/2069/head
Daniel Grunwald 5 years ago
parent
commit
81d9eda332
  1. 1
      ICSharpCode.Decompiler/IL/Transforms/ILInlining.cs

1
ICSharpCode.Decompiler/IL/Transforms/ILInlining.cs

@ -664,6 +664,7 @@ namespace ICSharpCode.Decompiler.IL.Transforms @@ -664,6 +664,7 @@ namespace ICSharpCode.Decompiler.IL.Transforms
/// <summary>
/// Gets whether arg can be un-inlined out of stmt.
/// </summary>
/// <seealso cref="ILInstruction.Extract"/>
internal static bool CanUninline(ILInstruction arg, ILInstruction stmt)
{
Debug.Assert(arg.IsDescendantOf(stmt));

Loading…
Cancel
Save