summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools
Commit message (Expand)AuthorAgeFilesLines
* SI-3439 Fix use of implicit constructor params in super callJason Zaugg2014-10-102-4/+5
* Merge pull request #4038 from adriaanm/t8894v2.11.3Grzegorz Kossakowski2014-10-091-1/+0
|\
| * SI-8894 dealias when looking at tuple componentsAdriaan Moors2014-10-081-1/+0
* | Merge pull request #3993 from puffnfresh/feature/color-replGrzegorz Kossakowski2014-10-091-1/+1
|\ \
| * | Add color to severity in REPL reporterBrian McKenna2014-09-241-1/+1
* | | SI-8890 handle reference to overload with errorAdriaan Moors2014-10-091-16/+25
| |/ |/|
* | Merge pull request #4026 from soc/SI-4788-newGrzegorz Kossakowski2014-10-074-120/+100
|\ \
| * | SI-4788/SI-5948 Respect RetentionPolicy of Java annotationsSimon Ochsenreither2014-10-074-120/+100
* | | Avoid ClassfileAnnotation warning for @SerialVersionUIDSimon Ochsenreither2014-10-071-1/+4
|/ /
* | Merge pull request #3986 from som-snytt/issue/6502-no-cpGrzegorz Kossakowski2014-10-072-7/+24
|\ \
| * | SI-6502 Repl reset/replay take settings argsSom Snytt2014-09-222-7/+24
| |/
* | Merge pull request #4016 from lrytz/t8731Grzegorz Kossakowski2014-10-071-1/+17
|\ \
| * | SI-8731 warning if @switch is ignoredLukas Rytz2014-10-061-1/+17
* | | Merge pull request #4033 from retronym/ticket/8888Lukas Rytz2014-10-071-1/+1
|\ \ \
| * | | SI-8888 Avoid ClassFormatError under -Ydelambdafy:methodJason Zaugg2014-10-071-1/+1
* | | | Merge pull request #3954 from gbasler/ticket/7746-2.11Grzegorz Kossakowski2014-10-064-53/+117
|\ \ \ \
| * | | | Cleanup `LinkedHashSet` fixes and replace them with `Set` (i.e., backGerard Basler2014-10-052-22/+14
| * | | | SI-7746 patmat: fix non-determinism, infeasible counter examplesGerard Basler2014-10-054-31/+103
* | | | | SI-8291 Fix implicitNotFound message with type aliasesJason Zaugg2014-10-051-1/+3
| |/ / / |/| | |
* | | | Merge pull request #3995 from retronym/ticket/8267Grzegorz Kossakowski2014-10-041-5/+22
|\ \ \ \
| * | | | SI-8267 Avoid existentials after polymorphic overload resolutionJason Zaugg2014-10-021-5/+22
| | |_|/ | |/| |
* | | | Merge pull request #4024 from retronym/ticket/8217Grzegorz Kossakowski2014-10-041-0/+1
|\ \ \ \
| * | | | SI-8217 allow abstract type members in objectsPaolo G. Giarrusso2014-10-011-0/+1
* | | | | Merge pull request #4021 from retronym/ticket/8869Jason Zaugg2014-10-021-0/+2
|\ \ \ \ \
| * | | | | SI-8869 Prevent ill-kindedness in type lambdasJason Zaugg2014-10-011-0/+2
| | |_|_|/ | |/| | |
* / | | | Don't remove elements from a map during iteration.Jason Zaugg2014-09-301-2/+4
|/ / / /
* | | | Rename ClassPath.findSourceFile to ClassPath.findClassFileGrzegorz Kossakowski2014-09-243-4/+4
* | | | Make compiler.properties fall back to prefixedBrian McKenna2014-09-221-1/+1
| |/ / |/| |
* | | Merge pull request #3988 from ghik/issue/8459Jason Zaugg2014-09-181-1/+1
|\ \ \
| * | | SI-8459 fix incorrect positions for incomplete selection treesghik2014-09-171-1/+1
| | |/ | |/|
* | | Merge pull request #3989 from retronym/ticket/8852Grzegorz Kossakowski2014-09-181-2/+3
|\ \ \
| * | | SI-8852 Support joint compilation of Java interfaces w. staticsJason Zaugg2014-09-181-2/+3
| |/ /
* | | Merge pull request #3974 from xeno-by/topic/buffer-pattern-expander-errorsGrzegorz Kossakowski2014-09-184-12/+13
|\ \ \ | |/ / |/| |
| * | This ensures that typechecking custom unapplications in silent modeEugene Burmako2014-09-114-12/+13
* | | Merge pull request #3936 from som-snytt/issue/8806Jason Zaugg2014-09-161-1/+8
|\ \ \
| * | | SI-8806 Add lower bound check to Any lintSom Snytt2014-09-051-2/+9
* | | | Merge pull request #3972 from lrytz/BCodeDelambdafyFixJason Zaugg2014-09-162-20/+21
|\ \ \ \
| * | | | isAnonymousClass/Function for delambdafy classes is not trueLukas Rytz2014-09-122-20/+21
* | | | | Merge pull request #3971 from lrytz/opt/dceJason Zaugg2014-09-168-13/+323
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Address review feedback.Lukas Rytz2014-09-112-6/+4
| * | | | Remove stale local variables and exception handlers after DCELukas Rytz2014-09-105-10/+136
| * | | | Clarify why we emit ATHROW after expressions of type NothingLukas Rytz2014-09-101-1/+45
| * | | | -Yopt mulit-choice flagLukas Rytz2014-09-092-1/+27
| * | | | Eliminate unreachable code in GenBCodeLukas Rytz2014-09-095-3/+125
| * | | | Removed empty class, unused importsLukas Rytz2014-09-092-8/+2
| |/ / /
* | | / moves the impl of quasiquotes to scala.reflectEugene Burmako2014-09-116-1222/+1
| |_|/ |/| |
* | | SI-8398 - unused warning reports lazy val as a methodKonstantin Fedorov2014-09-101-1/+1
|/ /
* | Merge pull request #3938 from gourlaysama/wip/t8764Grzegorz Kossakowski2014-09-091-1/+1
|\ \
| * | [nomaster] SI-8764 fix return type of case class productElement under Xexperi...Antoine Gourlay2014-09-091-1/+1
| |/
* | Merge pull request #3946 from gourlaysama/wip/t5254Grzegorz Kossakowski2014-09-091-11/+23
|\ \