Print positions in `--debugger`, instead of pointers

This commit is contained in:
Rebecca Turner 2024-02-02 17:38:46 -08:00
parent 081dc5daa1
commit 7d7483cafc
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ static std::ostream & showDebugTrace(std::ostream & out, const PosTable & positi
: positions[dt.expr.getPos() ? dt.expr.getPos() : noPos]; : positions[dt.expr.getPos() ? dt.expr.getPos() : noPos];
if (pos) { if (pos) {
out << pos; out << *pos;
if (auto loc = pos->getCodeLines()) { if (auto loc = pos->getCodeLines()) {
out << "\n"; out << "\n";
printCodeLines(out, "", *pos, *loc); printCodeLines(out, "", *pos, *loc);