1
0
forked from Mirror/wren

Remove some outdated TODOs.

They’re TODONE!
This commit is contained in:
Bob Nystrom
2014-02-13 08:38:44 -08:00
parent 756fe0d920
commit 59bb7eec7a
6 changed files with 0 additions and 28 deletions

View File

@ -6,6 +6,3 @@ class Foo {
var foo = new Foo
IO.print(foo is Foo) // expect: true
IO.print(foo.toString) // expect: Foo
// TODO: Get rid of this. If you're defining a class, it's because you have
// some state to initialize. if you don't, it shouldn't be a class.