6 references to ExactMatchDist
Microsoft.CodeAnalysis.CSharp.Features (6)
EditAndContinue\SyntaxComparer.cs (6)
1524
return
ExactMatchDist
;
1529
if (weightedDistance ==
ExactMatchDist
&& !SyntaxFactory.AreEquivalent(oldNode, newNode))
1544
return
ExactMatchDist
;
1551
return (distance ==
ExactMatchDist
) ? EpsilonDist : distance;
1565
Debug.Assert(!SyntaxFactory.AreEquivalent(leftToken, rightToken) || distance ==
ExactMatchDist
);
1573
Debug.Assert(!SyntaxFactory.AreEquivalent(leftNode, rightNode) || distance ==
ExactMatchDist
);