summaryrefslogtreecommitdiff
path: root/test/files/run/lazy-leaks.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixing all the tests and source which still use...Paul Phillips2011-08-081-1/+1
| | | | | | | Fixing all the tests and source which still use the old for comprehension syntax with vals where there are no vals and no vals where there are vals. No review.
* Renamed Application to App.Martin Odersky2011-02-211-1/+1
|
* Lazy fields null out fields that are used only ...Iulian Dragos2009-09-281-0/+18
Lazy fields null out fields that are used only in their initializer. When the lazy value is forced, it will null out all private fields that are used only by the current lazy value. This should reduce memory leaks, see #720