aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | ClassfileParser: avoid looking up inner class in wrong phaseGuillaume Martres2017-02-181-1/+1
| * | | | | | TreeUnpickler: do not capture Context in Annotation symbolGuillaume Martres2017-02-182-5/+13
| * | | | | | TreeUnpickler: do not capture Context in Annotation treeGuillaume Martres2017-02-181-1/+1
| * | | | | | TreeUnpickler: Avoid capturing context in lazyStatsGuillaume Martres2017-02-181-1/+1
| * | | | | | ImportInfo: Do not capture ContextGuillaume Martres2017-02-182-7/+7
| * | | | | | typedUnApply#trySelectUnapply: small cleanupGuillaume Martres2017-02-181-6/+6
| * | | | | | typedApply: Avoid using incorrect context in tryEitherGuillaume Martres2017-02-181-1/+1
| * | | | | | TailRec: Avoid harmless capture of ContextGuillaume Martres2017-02-181-1/+1
| * | | | | | deferredAnnot: Avoid harmless capture of ContextGuillaume Martres2017-02-181-2/+3
| |/ / / / /
* | | | | | Merge pull request #1984 from dotty-staging/fix-#1747-v2odersky2017-02-216-11/+25
|\ \ \ \ \ \
| * | | | | | Unrelated cleanup: Make SearchResult sealed.Martin Odersky2017-02-151-1/+1
| * | | | | | Better error message for Java/Scala method discrepanciesMartin Odersky2017-02-141-2/+14
| * | | | | | Avoid automatism for passing variances to PolyTypesMartin Odersky2017-02-143-7/+8
| * | | | | | Tweak printing of polymrophic methodsMartin Odersky2017-02-141-1/+2
* | | | | | | Merge pull request #2013 from dotty-staging/fix-#2006Nicolas Stucki2017-02-213-21/+9
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | Don't inline when errors are detectedMartin Odersky2017-02-213-21/+9
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #1996 from dotty-staging/fix-#1990odersky2017-02-217-19/+44
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Harden outer proxy computation of inlined codeMartin Odersky2017-02-196-30/+39
| * | | | | Fix sorting of accessed this-proxiesMartin Odersky2017-02-191-1/+6
| * | | | | Fix default parameter value.Martin Odersky2017-02-181-1/+1
| * | | | | Fix #1990: Handle case where inlining changes class of outerMartin Odersky2017-02-182-5/+16
| | |_|_|/ | |/| | |
* | | | | Use Message ID enumEnno Runne2017-02-202-2/+3
* | | | | Incorporated comments from @felixmulderEnno Runne2017-02-202-11/+12
* | | | | Change 'mixed left- and right-associative operators' to MessageEnno Runne2017-02-202-8/+40
* | | | | Merge pull request #1987 from dotty-staging/topic/remove-unused-flagsFelix Mulder2017-02-204-183/+29
|\ \ \ \ \
| * | | | | Make non-existent compiler options emit warnings instead of failingFelix Mulder2017-02-204-11/+16
| * | | | | Remove unused flagsFelix Mulder2017-02-202-173/+14
| |/ / / /
* | | | | Merge pull request #1986 from dotty-staging/error-messages-idsFelix Mulder2017-02-204-52/+114
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Use enum for error messages IDs.Nicolas Stucki2017-02-164-52/+114
* | | | | Merge pull request #1972 from dotty-staging/fix/inline-errorsodersky2017-02-182-6/+10
|\ \ \ \ \
| * | | | | TreeMap/TreeAccumulator: proper context for inlined treesGuillaume Martres2017-02-132-6/+10
* | | | | | Merge pull request #1995 from dotty-staging/fix/private-leaks-posodersky2017-02-181-5/+4
|\ \ \ \ \ \
| * | | | | | checkNoPrivateLeaks: Use correct position for errorsGuillaume Martres2017-02-171-5/+4
| | |_|/ / / | |/| | | |
* | | | | | Fix binding of x @ (e: T) in ClassTag-based patmatGuillaume Martres2017-02-171-7/+5
* | | | | | Fix #1991: Use classtag where available in unapplyMartin Odersky2017-02-172-14/+21
|/ / / / /
* | | | | Merge pull request #1962 from dotty-staging/centralize-function-logicodersky2017-02-167-52/+111
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | Add checks for synthetic functions and erased functions.Nicolas Stucki2017-02-137-52/+111
| |/ / /
* | | | Change '... expected but found ...' to MessageEnno Runne2017-02-144-12/+45
* | | | Fix #1976: Hack to support scala.xml's $scope (#1977)odersky2017-02-144-1/+8
* | | | Fix #1975: Align valdefs and for expressions for patternsMartin Odersky2017-02-141-5/+7
| |/ / |/| |
* | | Ennru forward reference error (#1973)Enno2017-02-142-2/+21
|/ /
* | Merge pull request #1931 from dotty-staging/fix-#1501Guillaume Martres2017-02-134-3/+30
|\ \
| * | Fix package name of Java's Serializable classMartin Odersky2017-02-101-1/+1
| * | Narrow Java exception to inheritance ruleMartin Odersky2017-02-081-3/+5
| * | Refine AnonClass generationMartin Odersky2017-02-081-1/+1
| * | Refine checkTraitInheritance conditionMartin Odersky2017-02-081-3/+16
| * | Fix #1501 - Check trait inheritance conditionMartin Odersky2017-02-082-1/+13
* | | Merge pull request #1951 from dotty-staging/fix-1484Felix Mulder2017-02-131-2/+2
|\ \ \ | |_|/ |/| |
| * | fix #1484: position of while incorrect in debugliu fengyun2017-02-101-2/+2
* | | Merge pull request #1969 from dotty-staging/fix/annot-funGuillaume Martres2017-02-131-1/+5
|\ \ \