aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pprint.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pprint.cpp b/src/pprint.cpp
index 78b13f4..8f1276d 100644
--- a/src/pprint.cpp
+++ b/src/pprint.cpp
@@ -49,6 +49,7 @@ operator<<(ostream& out, const AST* ast)
switch (type->kind) {
case AType::VAR: return out << "?" << type->id;
case AType::PRIM: return out << type->head();
+ case AType::DOTS: return out << "...";
case AType::EXPR: break; // will catch Tuple case below
}
}