chore: remove outdated TODO comments from test files for default constructor, for loop, list subscript setter, range, string unicode escapes, and while syntax

This commit is contained in:
Bob Nystrom
2014-02-13 16:38:44 +00:00
parent e3b3fef0fb
commit 9f9149bb08
6 changed files with 0 additions and 28 deletions
-6
View File
@@ -23,9 +23,3 @@ IO.print((5...2).from) // expect: 5
IO.print((3...0).from) // expect: 3
IO.print((3...-5).from) // expect: 3
IO.print((-2...-5).from) // expect: -2
// TODO: Test toString.
// TODO: Non-number RHS.
// TODO: Non-integer RHS.
// TODO: Range iteration.
// TODO: Empty or negative ranges.