提交 3ecfef48 编写于 作者: C CyrusNajmabadi

Add comment.

上级 b9bed670
......@@ -358,6 +358,10 @@ private int BinarySearch(string name)
var n = unsortedNodes[i];
var currentName = n.Name;
// Don't bother adding the exact same name the concatenated sequence
// over and over again. This can trivially happen because we'll run
// into the same names with different parents all through metadata
// and source symbols.
if (currentName != lastName)
{
concatenatedNamesBuilder.Append(currentName);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册