diff options
Diffstat (limited to 'lib/Expr/ExprPPrinter.cpp')
-rw-r--r-- | lib/Expr/ExprPPrinter.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/Expr/ExprPPrinter.cpp b/lib/Expr/ExprPPrinter.cpp index 3fa7155b..831a4d91 100644 --- a/lib/Expr/ExprPPrinter.cpp +++ b/lib/Expr/ExprPPrinter.cpp @@ -167,11 +167,7 @@ private: // Special case empty list. if (!head) { - if (updates.isRooted) { - PC << "arr" << updates.root->id; - } else { - PC << "[]"; - } + PC << "arr" << updates.root->id; return; } @@ -221,9 +217,6 @@ private: if (openedList) PC << ']'; - // FIXME: Figure out how isRooted should be dealt with in the language. The - // old solution of using "anonymous" arrays is not a good idea. - PC << " @ arr" << updates.root->id; } |