summaryrefslogtreecommitdiff
path: root/test/files/run/repl-colon-type.check
Commit message (Collapse)AuthorAgeFilesLines
* Moved IMain ops requiring stability into implicit class.Paul Phillips2012-11-091-2/+0
| | | | | | | | | A long-standing annoyance of having IMain stored in a var is that you can't call a method on it which returns a dependent type and then pass that to any other method. I realized I could get around this by creating an implicit class around the var; in the class, it is a val, so the method can be written there, and we implicitly convert from the var on demand.
* Massively simplified repl name resolution.Paul Phillips2012-11-091-1/+1
|
* Generate abstract methods in scala.Byte and friends.Paul Phillips2012-06-061-7/+9
| | | | | Rather than stub implementations. This saves over 50K of bytecode. I also added the necessary imports to silence the feature warnings.
* New facility: TypeDestructurers.Paul Phillips2012-04-161-3/+170
| | | | | | Would prefer to bake a little longer, but, scala days. More elaboration to come.
* Now :t types declarations as well as expression...Paul Phillips2011-05-291-0/+57
Now :t types declarations as well as expressions, and cleans up the output the same way the repl does so stray unsolved type constraints don't befuddle anyone. Closes #4391, no review.