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 9a7dffb commit 7aa5359Copy full SHA for 7aa5359
src/coverlet.core/Symbols/CecilSymbolHelper.cs
@@ -20,9 +20,9 @@ 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);
+ public static bool IsMoveNext(string fullName)
+ {
+ return IsMovenext.IsMatch(fullName);
26
}
27
28
public static List<BranchPoint> GetBranchPoints(MethodDefinition methodDefinition)
0 commit comments