File tree 7 files changed +77
-9
lines changed
compiler/src/dotty/tools/dotc
docs/_docs/reference/other-new-features
7 files changed +77
-9
lines changed Original file line number Diff line number Diff line change @@ -149,9 +149,11 @@ object NamerOps:
149
149
*/
150
150
def addConstructorApplies (scope : MutableScope , cls : ClassSymbol , modcls : ClassSymbol )(using Context ): scope.type =
151
151
def proxy (constr : Symbol ): Symbol =
152
+ var flags = ApplyProxyFlags | (constr.flagsUNSAFE & AccessFlags )
153
+ if cls.is(Protected ) && ! modcls.is(Protected ) then flags |= Protected
152
154
newSymbol(
153
155
modcls, nme.apply,
154
- ApplyProxyFlags | (constr.flagsUNSAFE & AccessFlags ) ,
156
+ flags ,
155
157
ApplyProxyCompleter (constr),
156
158
cls.privateWithin,
157
159
constr.coord)
@@ -175,9 +177,11 @@ object NamerOps:
175
177
176
178
/** A new symbol that is the constructor companion for class `cls` */
177
179
def classConstructorCompanion (cls : ClassSymbol )(using Context ): TermSymbol =
180
+ var flags = ConstructorCompanionFlags
181
+ if cls.is(Protected ) then flags |= Protected
178
182
val companion = newModuleSymbol(
179
183
cls.owner, cls.name.toTermName,
180
- ConstructorCompanionFlags , ConstructorCompanionFlags ,
184
+ flags, flags ,
181
185
constructorCompanionCompleter(cls),
182
186
coord = cls.coord,
183
187
compUnitInfo = cls.compUnitInfo)
Original file line number Diff line number Diff line change @@ -1198,9 +1198,8 @@ trait Applications extends Compatibility {
1198
1198
//
1199
1199
// summonFrom {
1200
1200
// case given A[t] =>
1201
- // summonFrom
1201
+ // summonFrom:
1202
1202
// case given `t` => ...
1203
- // }
1204
1203
// }
1205
1204
//
1206
1205
// the second `summonFrom` should expand only once the first `summonFrom` is
Original file line number Diff line number Diff line change @@ -4176,9 +4176,9 @@ class Typer(@constructorOnly nestingLevel: Int = 0) extends Namer
4176
4176
readapt(tree.appliedToNone) // insert () to primary constructors
4177
4177
else
4178
4178
errorTree(tree, em " Missing arguments for $methodStr" )
4179
- case _ => tryInsertApplyOrImplicit(tree, pt, locked) {
4180
- errorTree (tree, MethodDoesNotTakeParameters (tree))
4181
- }
4179
+ case _ =>
4180
+ tryInsertApplyOrImplicit (tree, pt, locked) :
4181
+ errorTree(tree, MethodDoesNotTakeParameters (tree))
4182
4182
}
4183
4183
4184
4184
def adaptNoArgsImplicitMethod (wtp : MethodType ): Tree = {
Original file line number Diff line number Diff line change @@ -39,8 +39,11 @@ The precise rules are as follows:
39
39
- the class has a companion object (which might have been generated in step 1), and
40
40
- that companion object does not already define a member named ` apply ` .
41
41
42
- Each generated ` apply ` method forwards to one constructor of the class. It has the
43
- same type and value parameters as the constructor.
42
+ Each generated ` apply ` method forwards to one constructor of the class.
43
+ It has the same type and value parameters as the constructor,
44
+ as well as the same access restriction as the class.
45
+ If the class is ` protected ` , then either the companion object must be ` protected `
46
+ or the ` apply ` method will be made ` protected ` .
44
47
45
48
Constructor proxy companions cannot be used as values by themselves. A proxy companion object must
46
49
be selected with ` apply ` (or be applied to arguments, in which case the ` apply ` is implicitly
Original file line number Diff line number Diff line change
1
+
2
+ class A :
3
+ protected class B
4
+
5
+ // This fails to compile, as expected
6
+ val x = A ().B () // error
7
+
8
+ object C :
9
+ protected val p = " protected"
10
+ protected def getString () = " Hello!"
11
+ protected class D :
12
+ def d = D () // ok
13
+
14
+ // This fails to compile
15
+ // val y = C.p
16
+
17
+ // And this also fails to compile
18
+ // val z = C.getString()
19
+
20
+ // However, this compiles just fine.
21
+ val alpha = C .D () // error
22
+ val beta = new C .D () // error
Original file line number Diff line number Diff line change
1
+
2
+ class Enumeration :
3
+ protected class Val (i : Int ):
4
+ def this () = this (42 )
5
+ object Val
6
+
7
+ class Test extends Enumeration :
8
+ val Hearts = Val (27 ) // error
9
+ val Diamonds = Val () // error
10
+
11
+ package p:
12
+ private [p] class C (i : Int ) // ctor proxy gets privateWithin of class
13
+ private [p] class D (i : Int )
14
+ object D
15
+
16
+ package q:
17
+ def f () = p.C (42 ) // error
18
+ def g () = p.D (42 ) // error
Original file line number Diff line number Diff line change
1
+
2
+ package companionless:
3
+
4
+ class Enumeration :
5
+ protected class Val (i : Int ):
6
+ def this () = this (42 )
7
+
8
+ class Test extends Enumeration :
9
+ val Hearts = Val (27 )
10
+ val Diamonds = Val ()
11
+
12
+
13
+ package companioned:
14
+
15
+ class Enumeration :
16
+ protected class Val (i : Int ):
17
+ def this () = this (42 )
18
+ protected object Val
19
+
20
+ class Test extends Enumeration :
21
+ val Hearts = Val (27 )
22
+ val Diamonds = Val ()
You can’t perform that action at this time.
0 commit comments