summaryrefslogtreecommitdiff
path: root/test/files/jvm/varargs
Commit message (Collapse)AuthorAgeFilesLines
* SI-8786 disable part of test that's failing the jdk8 buildLukas Rytz2014-09-041-1/+3
|
* SI-8743 Fix crasher with poly-methods annotated with @varargsJason Zaugg2014-07-232-1/+2
| | | | | | | | | | | | | The code that generated the Java varargs forwarder was basing things on the `ValDef-s` of the parameters of the source method. But, their types refer to a type parameter skolems of the enclosing method, which led to a type mismatch when typechecking the forwarder. Instead, I've reworked the code to simply use the `DefDef`-s symbol's info, which *doesn't* refer to skolems. This actually simplifies the surrounding code somewhat; rather than repeated symbols in a map we can just time travel the pre-uncurry method signatures to figure out which params are releated.
* Cull extraneous whitespace.Paul Phillips2013-09-182-3/+3
| | | | | | | | | | | | | | | | | | | | | One last flurry with the broom before I leave you slobs to code in your own filth. Eliminated all the trailing whitespace I could manage, with special prejudice reserved for the test cases which depended on the preservation of trailing whitespace. Was reminded I cannot figure out how to eliminate the trailing space on the "scala> " prompt in repl transcripts. At least reduced the number of such empty prompts by trimming transcript code on the way in. Routed ConsoleReporter's "printMessage" through a trailing whitespace stripping method which might help futureproof against the future of whitespace diseases. Deleted the up-to-40 lines of trailing whitespace found in various library files. It seems like only yesterday we performed whitespace surgery on the whole repo. Clearly it doesn't stick very well. I suggest it would work better to enforce a few requirements on the way in.
* Begone t1737...Hubert Plociniczak2011-11-022-3/+3
|
* Further fixes some issues for #3621.Aleksandar Pokopec2010-11-252-0/+2
| | | | | Review by Rytz.
* Fix for #3621.Aleksandar Pokopec2010-11-243-0/+47
Added varargs annotation. Review by Rytz.