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 909249c commit e63b3f4Copy full SHA for e63b3f4
src/coverlet.core/Symbols/CecilSymbolHelper.cs
@@ -20,11 +20,6 @@ public static class CecilSymbolHelper
20
private const int StepOverLineCode = 0xFEEFEE;
21
private static readonly Regex IsMovenext = new Regex(@"\<[^\s>]+\>\w__\w(\w)?::MoveNext\(\)$", RegexOptions.Compiled | RegexOptions.ExplicitCapture);
22
23
- public static bool IsMoveNext(string fullName)
24
- {
25
- return IsMovenext.IsMatch(fullName);
26
- }
27
-
28
public static List<BranchPoint> GetBranchPoints(MethodDefinition methodDefinition)
29
{
30
var list = new List<BranchPoint>();
0 commit comments