correct spacing around operators in slice output

This commit is contained in:
Michael Ficarra
2012-05-20 16:32:10 -04:00
parent b8149812cd
commit 972a5299d5
5 changed files with 6 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ test "#1722: operator precedence in unbounded slice compilation", ->
arrayEq [0..n], list[..n or 0]
arrayEq [0..n], list[..if n then n else 0]
test "#2349: slicing to numeric strings", ->
test "#2349: inclusive slicing to numeric strings", ->
arrayEq [0, 1], [0..10][.."1"]