Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
vmanot committed Nov 22, 2024
1 parent 860e675 commit 8b416cd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ extension ObservableObject {
public func _opaque_publishToObjectWillChange() throws {
try cast(objectWillChange, to: (any _opaque_VoidSender).self).send()
}

public func _objectWillChange_send() where ObjectWillChangePublisher == ObservableObjectPublisher {
objectWillChange.send()
}
}

extension ObservableObject {
Expand Down
6 changes: 3 additions & 3 deletions Sources/Merge/Intramodular/Process/_AsyncProcess.swift
Original file line number Diff line number Diff line change
Expand Up @@ -658,14 +658,14 @@ extension _AsyncProcess {
@available(macCatalyst, unavailable)
extension _AsyncProcess: CustomStringConvertible {
public var description: String {
#if os(macOS) || targetEnvironment(macCatalyst)
#if os(macOS) || targetEnvironment(macCatalyst)
Process._makeDescriptionPrefix(
launchPath: self.process.launchPath,
arguments: self.process.arguments
)
#else
#else
fatalError()
#endif
#endif
}
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/Merge/Intramodular/WIP/_AsyncTaskScheduler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ extension _AsyncTaskScheduler {
}
}

// MARK: - Implemented Conformances
// MARK: - Conformees

public struct _DefaultAsyncScheduler {
public func schedule(
Expand Down
2 changes: 1 addition & 1 deletion Sources/Merge/Intramodular/WIP/_TaskSinkProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extension _TaskSinkProtocol {
}
}

// MARK: - Implemented Conformances
// MARK: - Conformees

@_spi(Internal)
extension TaskQueue: _TaskSinkProtocol {
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftDI/Intramodular/Core/TaskDependencyKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public enum _TaskDependencyAttribute {
case unstashable
}

// MARK: - Implemented Conformances
// MARK: - Conformees

public struct _OptionalTaskDependencyKey<T>: TaskDependencyKey {
public typealias Domain = TaskDependencies
Expand Down

0 comments on commit 8b416cd

Please sign in to comment.