re-include ambiguous identifier in ambiguous identifier output

This commit is contained in:
Julian Fondren
2019-04-28 02:00:06 -05:00
parent d85de3cd57
commit d8e0d6801b

View File

@@ -257,7 +257,8 @@ proc errorUseQualifier*(c: PContext; info: TLineInfo; s: PSym) =
while candidate != nil:
if i == 0: err.add " --use one of the following:\n"
else: err.add "\n"
err.add candidate.owner.name.s & "." & typeToString(candidate.typ)
err.add candidate.owner.name.s & "." & candidate.name.s
err.add ": " & typeToString(candidate.typ)
candidate = nextIdentIter(ti, c.importTable.symbols)
inc i
localError(c.config, info, errGenerated, err)