Browse Source

Fix NRT warning in GetBlockStateSetMappingForLeave.

pull/2639/head
Siegfried Pammer 4 years ago
parent
commit
4c1931d5c6
  1. 4
      ICSharpCode.Decompiler/IL/ControlFlow/StateRangeAnalysis.cs

4
ICSharpCode.Decompiler/IL/ControlFlow/StateRangeAnalysis.cs

@ -279,9 +279,11 @@ namespace ICSharpCode.Decompiler.IL.ControlFlow
} }
} }
} }
public LongDict<BlockContainer> GetBlockStateSetMappingForLeave() public LongDict<BlockContainer> GetBlockStateSetMappingForLeave()
{ {
return LongDict.Create(rangesForLeave.Select(kv => (kv.Value, kv.Key))); Debug.Assert(mode == StateRangeAnalysisMode.AwaitInFinally);
return LongDict.Create(rangesForLeave!.Select(kv => (kv.Value, kv.Key)));
} }
} }
} }

Loading…
Cancel
Save