-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathisolation_macro.swift
47 lines (40 loc) · 1.33 KB
/
isolation_macro.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// RUN: %target-swift-frontend -typecheck %s -verify
// RUN: %target-swift-frontend -dump-ast %s | %FileCheck %s
// REQUIRES: concurrency
// REQUIRES: distributed
// REQUIRES: swift_swift_parser
import Distributed
@available(SwiftStdlib 5.7, *)
extension DistributedActor {
// CHECK-LABEL: actorIsolationToSelf()
func actorIsolationToSelf() {
// CHECK: macro_expansion_expr
// CHECK: rewritten=current_context_isolation_expr
// CHECK-NEXT: inject_into_optional
// CHECK: member_ref_expr{{.*}}asLocalActor
// CHECK: declref_expr type="Self"
_ = #isolation
}
}
// CHECK-LABEL: actorIsolationToParam(_:)
@available(SwiftStdlib 5.7, *)
func actorIsolationToParam(_ isolatedParam: isolated any DistributedActor) {
// CHECK: macro_expansion_expr
// CHECK: rewritten=current_context_isolation_expr
// CHECK: member_ref_expr{{.*}}asLocalActor
_ = #isolation
}
func acceptClosure(_ body: () -> Void) { }
// CHECK-LABEL: closureIsolatedToOuterParam(
@available(SwiftStdlib 5.7, *)
func closureIsolatedToOuterParam(_ isolatedParam: isolated any DistributedActor) {
// CHECK: closure_expr
// CHECK: macro_expansion_expr
// CHECK: rewritten=current_context_isolation_expr
// CHECK: inject_into_optional
// CHECK: member_ref_expr{{.*}}asLocalActor
acceptClosure {
_ = #isolation
print(isolatedParam)
}
}