fix: add list newline handling and resolve multiple test TODOs across compiler and test suite

- Add TOKEN_LINE matching after list elements in compiler to allow newlines before commas or closing brackets
- Add tests for list newline handling, EOF after comma/element, and class name inside body
- Remove resolved TODOs for default constructors, inherited fields, metaclass is checks, zero comparison, and bitwise not behavior
This commit is contained in:
Bob Nystrom
2013-12-20 20:42:11 +00:00
parent 46f53e4421
commit d9255666f4
12 changed files with 54 additions and 15 deletions
-1
View File
@@ -6,7 +6,6 @@ io.write(~23) // expect: 4294967272
io.write(~4294967295) // expect: 0
// Past max u32 value.
// TODO: Is this right?
io.write(~4294967296) // expect: 4294967295
// Negative numbers.