Fix display of list

This commit is contained in:
greg 2017-02-19 01:17:54 -08:00
parent 850b77541b
commit f90bfb88ca
1 changed files with 8 additions and 4 deletions

View File

@ -95,8 +95,12 @@ impl fmt::Display for Expression {
}
ListLiteral(ref items) => {
write!(f, "[ ");
for item in items {
write!(f, ", {}", item);
let mut iter = items.iter().peekable();
while let Some(item) = iter.next() {
write!(f, "{}", item);
if let Some(_) = iter.peek() {
write!(f, ", ");
}
}
write!(f, " ]")
}