Fix a bunch of test TODOs.
- Added a bunch of tests. - Removed some TODOs for stuff that's already done. - Made list literals handle newlines better.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class Foo {
|
||||
static sayName {
|
||||
io.write(Foo.toString)
|
||||
}
|
||||
|
||||
sayName {
|
||||
io.write(Foo.toString)
|
||||
}
|
||||
|
||||
static toString { return "Foo!" }
|
||||
}
|
||||
|
||||
Foo.sayName // expect: Foo!
|
||||
(new Foo).sayName // expect: Foo!
|
||||
Reference in New Issue
Block a user