Skip to content

Commit cb4e51c

Browse files
committed
[ASTDumper] For UnresolvedSpecializeExpr, print out its TypeReprs.
Swift SVN r8878
1 parent 9d155f9 commit cb4e51c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/ASTDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ class PrintExpr : public ExprVisitor<PrintExpr> {
988988
for (TypeLoc T : E->getUnresolvedParams()) {
989989
OS << '\n';
990990
OS.indent(Indent+2);
991-
T.getType().print(OS);
991+
T.getTypeRepr()->print(OS);
992992
}
993993
OS << ')';
994994
}

0 commit comments

Comments
 (0)