Merge pull request #11132 from jrfondren/expand-amb-identifier-output

provide more useful ambiguous-identifier error output
This commit is contained in:
Andreas Rumpf
2019-05-08 17:54:53 +02:00
committed by GitHub
2 changed files with 6 additions and 5 deletions

View File

@@ -255,9 +255,10 @@ proc errorUseQualifier*(c: PContext; info: TLineInfo; s: PSym) =
var candidate = initIdentIter(ti, c.importTable.symbols, s.name)
var i = 0
while candidate != nil:
if i == 0: err.add " -- use "
else: err.add " or "
err.add candidate.owner.name.s & "." & candidate.name.s
if i == 0: err.add " -- use one of the following:\n"
else: err.add "\n"
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)