summaryrefslogtreecommitdiff
path: root/test/files/run/t6223.check
Commit message (Collapse)AuthorAgeFilesLines
* An option for real repl output.Paul Phillips2012-10-291-1/+1
| | | | | | | | | There have been many requests to expose the products of the repl in some way outside in-memory. This does that. scala # usual in-memory behavior scala -Yrepl-outdir "" # make up a temp dir scala -Yrepl-outdir /foo/bar # use /foo/bar
* Move side-effecting call out of debuglog(). Fixes SI-6223.Erik Osheim2012-08-131-0/+4
This change fixes a situation in which method calls aren't being properly specialized. All the existing tests pass; in addition, it likely fixes other specialization bugs (and improves performance of specialized code). Also includes a small regression test.