6 references to ExactMatchDist
Microsoft.CodeAnalysis.CSharp.Features (6)
EditAndContinue\SyntaxComparer.cs (6)
1512
return
ExactMatchDist
;
1517
if (weightedDistance ==
ExactMatchDist
&& !SyntaxFactory.AreEquivalent(oldNode, newNode))
1532
return
ExactMatchDist
;
1539
return (distance ==
ExactMatchDist
) ? EpsilonDist : distance;
1553
Debug.Assert(!SyntaxFactory.AreEquivalent(leftToken, rightToken) || distance ==
ExactMatchDist
);
1561
Debug.Assert(!SyntaxFactory.AreEquivalent(leftNode, rightNode) || distance ==
ExactMatchDist
);