Skip to content

Commit 38304c6

Browse files
committed
Support cap params in type refinements
1 parent c41113d commit 38304c6

9 files changed

+65
-21
lines changed

compiler/src/dotty/tools/dotc/parsing/Parsers.scala

+3-2
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ object Parsers {
225225
def isErasedKw = isErased && in.isSoftModifierInParamModifierPosition
226226
// Are we seeing a `cap` soft keyword for declaring a capture-set member or at the beginning a capture-variable parameter list?
227227
def isCapKw = Feature.ccEnabled && isIdent(nme.cap)
228+
// This will typically be used at the beginning of a type parameter list to check if it is a capture-variable parameter list:
228229
def isCapKwNext = Feature.ccEnabled && in.lookahead.isIdent(nme.cap)
229230
def isSimpleLiteral =
230231
simpleLiteralTokens.contains(in.token)
@@ -1916,7 +1917,7 @@ object Parsers {
19161917
refinedTypeRest(atSpan(startOffset(t)) {
19171918
RefinedTypeTree(rejectWildcardType(t), refinement(indentOK = true))
19181919
})
1919-
else if Feature.ccEnabled && in.isIdent(nme.UPARROW) && isCaptureUpArrow then
1920+
else if Feature.ccEnabled && in.isIdent(nme.UPARROW) && isCaptureUpArrow then // TODO remove
19201921
atSpan(t.span.start):
19211922
in.nextToken()
19221923
if in.token == LBRACE
@@ -4858,7 +4859,7 @@ object Parsers {
48584859
fail(em"this kind of definition cannot be a refinement")
48594860

48604861
while
4861-
val dclFound = isDclIntro
4862+
val dclFound = isDclIntro || isCapKw // TODO grammar doc
48624863
if dclFound then
48634864
stats ++= checkLegal(defOrDcl(in.offset, Modifiers()))
48644865
var what = "declaration"

tests/pending/cap-paramlists8.scala

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import language.experimental.captureChecking
2+
3+
trait Ctx[T]
4+
5+
def test =
6+
val x: Any^ = ???
7+
val y: Any^ = ???
8+
object O:
9+
val z: Any^ = ???
10+
val baz3 = (i: Int) => [cap C, D <: C, E <: {C,x}] => () => [cap F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import language.experimental.captureChecking
2-
import language.experimental.namedTypeArguments
32

43
trait Ctx[T]
54

@@ -8,7 +7,6 @@ def test =
87
val y: Any^ = ???
98
object O:
109
val z: Any^ = ???
11-
val bar = [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E}] => (x: Int) => 1
1210
def foo[cap A >: y <: x,
1311
B,
1412
C <: {x},
@@ -22,20 +20,4 @@ def test =
2220
L <: {x, y, O.z},
2321
M >: {x, y, O.z} <: C : Ctx,
2422
N >: x <: x,
25-
O >: O.z <: O.z] = ???
26-
val baz = () => [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1
27-
val baz2 = (i: Int) => [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1
28-
val baz3 = (i: Int) => [cap C, D <: C, E <: {C,x}] => () => [cap F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1
29-
30-
31-
trait Foo[cap U,V,W]:
32-
cap C = caps.cap
33-
cap D = {caps.cap}
34-
cap E >: {V,W} <: U
35-
36-
def test2 =
37-
val x: Any^ = ???
38-
def foo[cap A, B >: A](x: Int) = 1
39-
foo[cap x, x](0)
40-
foo[cap A = x, B = {x}](0)
41-
foo[cap A = {x}](0)
23+
O >: O.z <: O.z] = ???
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import language.experimental.captureChecking
2+
3+
trait Bar:
4+
cap C
5+
6+
def useFoo[cap D](x: Bar { cap C = D} ): Any^{x.C} = ???
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import language.experimental.captureChecking
2+
3+
trait Ctx[T]
4+
5+
def test =
6+
val x: Any^ = ???
7+
val y: Any^ = ???
8+
object O:
9+
val z: Any^ = ???
10+
val bar = [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E}] => (x: Int) => 1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import language.experimental.captureChecking
2+
3+
trait Foo[cap U,V,W]:
4+
cap C = caps.cap
5+
cap D = {caps.cap}
6+
cap E >: {V,W} <: U
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import language.experimental.captureChecking
2+
import language.experimental.namedTypeArguments
3+
4+
def test2 =
5+
val x: Any^ = ???
6+
def foo[cap A, B >: A](x: Int) = 1
7+
foo[cap x, x](0)
8+
foo[cap A = x, B = {x}](0)
9+
foo[cap A = {x}](0)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import language.experimental.captureChecking
2+
3+
trait Ctx[T]
4+
5+
def test =
6+
val x: Any^ = ???
7+
val y: Any^ = ???
8+
object O:
9+
val z: Any^ = ???
10+
val baz = () => [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import language.experimental.captureChecking
2+
3+
trait Ctx[T]
4+
5+
def test =
6+
val x: Any^ = ???
7+
val y: Any^ = ???
8+
object O:
9+
val z: Any^ = ???
10+
val baz2 = (i: Int) => [cap C, D <: C, E <: {C,x}, F >: {x,y} <: {C,E} : Ctx] => (x: Int) => 1

0 commit comments

Comments
 (0)