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
-13
View File
@@ -22,17 +22,4 @@
IO.print(list) // expect: [7, 6, 5]
}
// TODO: Handle out of range.
// TODO: Wrong non-number type.
// TODO: Floating-point subscript.
//{
// var list = [1, 2, 3, 4]
// list[4] = 1
//}
//
//{
// var list = [1, 2, 3, 4]
// list[-5] = 1
//}
// TODO: Not in this dir, but need tests for subscript setter grammar.