Skip to content

Commit 93a7a3a

Browse files
committed
Align Permissions example with its test file
1 parent 9bbe374 commit 93a7a3a

File tree

1 file changed

+30
-23
lines changed

1 file changed

+30
-23
lines changed

tests/pos/reference/opaque.scala

+30-23
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,84 @@
1-
object Logarithms {
1+
object MyMath:
22

33
opaque type Logarithm = Double
44

5-
object Logarithm {
5+
object Logarithm:
6+
7+
// These are the two ways to lift to the Logarithm type
68

7-
// These are the ways to lift to the logarithm type
89
def apply(d: Double): Logarithm = math.log(d)
910

1011
def safe(d: Double): Option[Logarithm] =
11-
if (d > 0.0) Some(math.log(d)) else None
12-
}
12+
if d > 0.0 then Some(math.log(d)) else None
13+
14+
end Logarithm
1315

1416
// Extension methods define opaque types' public APIs
1517
extension (x: Logarithm)
1618
def toDouble: Double = math.exp(x)
1719
def + (y: Logarithm): Logarithm = Logarithm(math.exp(x) + math.exp(y))
1820
def * (y: Logarithm): Logarithm = x + y
19-
}
2021

21-
object LogTest {
22-
import Logarithms.*
22+
end MyMath
23+
24+
object LogTest:
25+
import MyMath.Logarithm
2326
import Predef.{any2stringadd as _, *}
2427

2528
val l = Logarithm(1.0)
2629
val l2 = Logarithm(2.0)
2730
val l3 = l * l2
2831
val l4 = l + l2
29-
}
3032

3133

32-
object Access {
34+
35+
object Access:
3336

3437
opaque type Permissions = Int
3538
opaque type PermissionChoice = Int
3639
opaque type Permission <: Permissions & PermissionChoice = Int
3740

38-
extension (x: Permissions)
39-
def & (y: Permissions): Permissions = x | y
4041
extension (x: PermissionChoice)
4142
def | (y: PermissionChoice): PermissionChoice = x | y
43+
extension (x: Permissions)
44+
def & (y: Permissions): Permissions = x | y
4245
extension (granted: Permissions)
4346
def is(required: Permissions) = (granted & required) == required
44-
extension (granted: Permissions)
4547
def isOneOf(required: PermissionChoice) = (granted & required) != 0
4648

4749
val NoPermission: Permission = 0
4850
val Read: Permission = 1
4951
val Write: Permission = 2
5052
val ReadWrite: Permissions = Read | Write
5153
val ReadOrWrite: PermissionChoice = Read | Write
52-
}
5354

54-
object User {
55+
end Access
56+
57+
object User:
5558
import Access.*
5659

5760
case class Item(rights: Permissions)
61+
extension (item: Item)
62+
def +(other: Item): Item = Item(item.rights & other.rights)
5863

5964
val roItem = Item(Read) // OK, since Permission <: Permissions
65+
val woItem = Item(Write)
6066
val rwItem = Item(ReadWrite)
6167
val noItem = Item(NoPermission)
6268

63-
assert( roItem.rights.is(ReadWrite) == false )
64-
assert( roItem.rights.isOneOf(ReadOrWrite) == true )
69+
assert(!roItem.rights.is(ReadWrite))
70+
assert(roItem.rights.isOneOf(ReadOrWrite))
6571

66-
assert( rwItem.rights.is(ReadWrite) == true )
67-
assert( rwItem.rights.isOneOf(ReadOrWrite) == true )
72+
assert(rwItem.rights.is(ReadWrite))
73+
assert(rwItem.rights.isOneOf(ReadOrWrite))
6874

69-
assert( noItem.rights.is(ReadWrite) == false )
70-
assert( noItem.rights.isOneOf(ReadOrWrite) == false )
75+
assert(!noItem.rights.is(ReadWrite))
76+
assert(!noItem.rights.isOneOf(ReadOrWrite))
7177

78+
assert((roItem + woItem).rights.is(ReadWrite))
7279
// Would be a type error:
73-
// assert( roItem.rights.isOneOf(ReadWrite) == true )
74-
}
80+
// assert(roItem.rights.isOneOf(ReadWrite))
81+
end User
7582

7683
object o {
7784
opaque type T = Int

0 commit comments

Comments
 (0)