Avatar
Avatar
shiz
The rule about @escaping closures being non-isolated was never great: it's always been an heuristic to try to deal with the world where @Sendable has yet to be fully adopted. So instead of making this heuristic part of the actors design, to be removed at some later point, we've removed it from the proposal. Instead, we'll need to rely on dynamic checking where actor code interacts with non-@Sendable`-enforcing code.
https://forums.swift.org/t/se-0306-second-review-actors/47291/4
omochimetaru 9/24/2021 7:16 AM
Sendableが普及するまでの処置で、良くないねって言ってますね。
7:17 AM
プロポーザルからはこの部分を除去して、代わりに実行時のチェックに頼る必要があるだろう。