File tree 2 files changed +11
-1
lines changed
stdlib/public/Concurrency
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ set(SWIFT_RUNTIME_CONCURRENCY_SWIFT_SOURCES
126
126
AsyncThrowingFlatMapSequence.swift
127
127
AsyncThrowingMapSequence.swift
128
128
AsyncThrowingPrefixWhileSequence.swift
129
- ExecutorJob .swift
129
+ PartialAsyncTask .swift
130
130
GlobalActor.swift
131
131
GlobalConcurrentExecutor.swift
132
132
MainActor.swift
Original file line number Diff line number Diff line change 12
12
13
13
import Swift
14
14
15
+ // N.B. It would be nice to rename this file to ExecutorJob.swift, but when
16
+ // trying that we hit an error from the API digester claiming that
17
+ //
18
+ // +Var UnownedJob.context has mangled name changing from
19
+ // 'Swift.UnownedJob.(context in #UNSTABLE ID#) : Builtin.Job' to
20
+ // 'Swift.UnownedJob.(context in #UNSTABLE ID#) : Builtin.Job'
21
+ //
22
+ // This is odd because `context` is private, so it isn't really part of
23
+ // the module API.
24
+
15
25
// TODO: It would be better if some of the functions here could be inlined into
16
26
// the Swift code. In particular, some of the ones that deal with data held on
17
27
// ExecutorJob.
You can’t perform that action at this time.
0 commit comments