internal func withValueImpl<R>(_ valueDuringOperation: __owned Value, operation: () async throws -> R, isolation: isolated (any Actor)?, file: String = #fileID, line: UInt = #line) async rethrows -> R { _taskLocalValuePush(key: key, value: consume valueDuringOperation) defer { _taskLocalValuePop() } return try await operation() }
#isolation
はその関数自体のアイソレーションを言ってて、渡される関数のことは関係なくて_inheritActorContext
は渡される関数のアイソレーションを言ってるから別物?