Skip to content

Commit 5b06dc6

Browse files
[AST] Make Expr target references red in ASTDot.
1 parent d940c39 commit 5b06dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse/ASTDot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void ASTDot::operator()(Const<Designator> &e)
7979
<< " [style=\"dashed\",dir=\"forward\",color=\"#404040\"];";
8080
} else if (auto val = std::get_if<const Expr*>(&t)) {
8181
const Expr *expr = *val;
82-
indent() << id(e) << EDGE << id(*expr) << " [style=\"dashed\",dir=\"forward\",color=\"#404040\"];";
82+
indent() << id(e) << EDGE << id(*expr) << " [style=\"dashed\",dir=\"forward\",color=\"crimson\"];";
8383
}
8484
}
8585

0 commit comments

Comments
 (0)