.list -> .toList

Fix #248.
This commit is contained in:
Bob Nystrom
2015-04-03 11:22:34 -07:00
parent 563a090865
commit 75a3051fae
7 changed files with 9 additions and 9 deletions
@@ -8,4 +8,4 @@ class TestSequence is Sequence {
iteratorValue(iterator) { iterator }
}
IO.print((new TestSequence).list) // expect: [1, 2, 3]
IO.print((new TestSequence).toList) // expect: [1, 2, 3]