Get rid of my name from TODOs. Anyone can do them.

This commit is contained in:
Bob Nystrom
2013-12-14 15:28:18 -08:00
parent 5c807c0ec5
commit 7fe60499db
38 changed files with 171 additions and 171 deletions
+2 -2
View File
@@ -7,5 +7,5 @@ var foo = Foo.new
io.write(foo is Foo) // expect: true
io.write(foo.toString) // expect: Foo
// TODO(bob): Test that class doesn't get default constructor if it has an
// explicit one.
// TODO: Test that class doesn't get default constructor if it has an explicit
// one.
+1 -1
View File
@@ -1,5 +1,5 @@
class Foo {
// TODO(bob): Do we want to require an explicit "new" here?
// TODO: Do we want to require an explicit "new" here?
this new { io.write("zero") }
this new(a) { io.write(a) }
this new(a, b) { io.write(a + b) }