aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-09-09 15:02:18 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-09-09 15:02:18 +0200
commit4804bb23f2dc7bf143dc8739750e979fec61c7c4 (patch)
tree5d2828185f8ce7070dec4462e12babebcc151b00 /src
parent46a7391d068bae0da81a36fd6fe549d666764bb0 (diff)
downloaddotty-4804bb23f2dc7bf143dc8739750e979fec61c7c4.tar.gz
dotty-4804bb23f2dc7bf143dc8739750e979fec61c7c4.tar.bz2
dotty-4804bb23f2dc7bf143dc8739750e979fec61c7c4.zip
ExpandPrivate: add links to discussion.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/transform/ExpandPrivate.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/transform/ExpandPrivate.scala b/src/dotty/tools/dotc/transform/ExpandPrivate.scala
index cfa52c94d..dbf4456a6 100644
--- a/src/dotty/tools/dotc/transform/ExpandPrivate.scala
+++ b/src/dotty/tools/dotc/transform/ExpandPrivate.scala
@@ -23,6 +23,9 @@ import TreeTransforms._
* public or protected parameter accessor with the same name as the forwarder.
* This is necessary since private methods are not allowed to have the same name
* as inherited public ones.
+ *
+ * See discussion in https://github.com/lampepfl/dotty/pull/784
+ * and https://github.com/lampepfl/dotty/issues/783
*/
class ExpandPrivate extends MiniPhaseTransform with IdentityDenotTransformer { thisTransform =>
import ast.tpd._