summaryrefslogtreecommitdiff
path: root/test/files/jvm/interpreter.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8035 Deprecate automatic () insertion in argument listsSimon Ochsenreither2014-01-091-1/+1
| | | | | | | | | | | | | This promotes the () insertion warning from -Ywarn-adapted-args to a deprecation warning. -Xfuture tunrs it into a compiler error. Auto tupling remains unchanged for now. The tests have been fixed the following way: - Warnings caused by general sloppiness (Try(), Future(), ...) have been fixed. - Warnings which raise interesting questions (x == (), ...) received an updated checkfile for now.
* Removed old pattern matcher.Paul Phillips2012-12-261-1/+1
|
* Removing more unneeded code.Paul Phillips2012-05-151-1/+1
|
* virtpatmat on by default; chicken out: -XoldpatmatAdriaan Moors2012-04-141-1/+1
| | | | | | | some tests (unreachability, exhaustivity, @switch annotation checking) are still run under -Xoldpatmat, but that will change before we go into RC mode (then the test/ partest of this commit will be reverted) removed irrelevant dependency on patmat
* Next generation of macrosEugene Burmako2012-04-121-4/+5
| | | | | | | | | | | | | | | | | | | | | | Implements SIP 16: Self-cleaning macros: http://bit.ly/wjjXTZ Features: * Macro defs * Reification * Type tags * Manifests aliased to type tags * Extended reflection API * Several hundred tests * 1111 changed files Not yet implemented: * Reification of refined types * Expr.value splicing * Named and default macro expansions * Intricacies of interaction between macros and implicits * Emission of debug information for macros (compliant with JSR-45) Dedicated to Yuri Alekseyevich Gagarin
* Begone t1737...Hubert Plociniczak2011-11-021-4/+4
|
* Each of the three commits preceding this are to...Paul Phillips2011-05-291-0/+158
| | | | | | | | | | | Each of the three commits preceding this are to correct regressions which would have been caught by the interpreter test and never checked in in the first place, were it not disabled. The windows tax claims another victim. Or three victims. Re-enabled the interpreter test. No way for me to know if it will pass everywhere without trying it. No review.
* Temporarily moving interpreter.scala to pending.Martin Odersky2011-04-251-158/+0
|
* Break 9 tests, fix 9 tests, realize you broke t...Paul Phillips2011-02-281-11/+6
| | | | | | | Break 9 tests, fix 9 tests, realize you broke the test you checked in between +9 and -9. Fix that and generalize the repl tests a little. I think we're all the way there. No review.
* After discovering #3376 was fixed I gave in and...Paul Phillips2011-02-041-35/+7
| | | | | | | | After discovering #3376 was fixed I gave in and tried to write a test. Now that the fiddling is over you can write repl tests without creating 5000 streams and settings. Look at test/files/run/bug3376.scala or jvm/interpreter.scala to see. Test case closes #3376, no review.
* new classpaths.Lukas Rytz2009-10-261-2/+5
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-121-0/+9
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-151-0/+179
Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.