diff --git a/Sources/Nodes/Core/AbstractContext.swift b/Sources/Nodes/Core/AbstractContext.swift index 0931cf135..7e59861a0 100644 --- a/Sources/Nodes/Core/AbstractContext.swift +++ b/Sources/Nodes/Core/AbstractContext.swift @@ -139,13 +139,15 @@ open class _BaseContext: Context { // swiftlint:disable:this type_name try workerController.withWorkers(ofType: type, perform: perform) } + #if DEBUG + deinit { - #if DEBUG if isActive { - assertionFailure("Lifecycle Violation: Expected `AbstractContext` to deactivate before it is deallocated.") + assertionFailure("Lifecycle Violation: Expect `AbstractContext` to deactivate before it is deallocated.") } - #endif } + + #endif } /** diff --git a/Sources/Nodes/Core/AbstractFlow.swift b/Sources/Nodes/Core/AbstractFlow.swift index 96571ce89..5468ed43f 100644 --- a/Sources/Nodes/Core/AbstractFlow.swift +++ b/Sources/Nodes/Core/AbstractFlow.swift @@ -279,13 +279,15 @@ open class AbstractFlow: Flow { try flowController.withFlows(ofType: type, perform: perform) } + #if DEBUG + deinit { - #if DEBUG if _isStarted { - assertionFailure("Lifecycle Violation: Expected `AbstractFlow` to end before it is deallocated.") + assertionFailure("Lifecycle Violation: Expect `AbstractFlow` to end before it is deallocated.") } - #endif } + + #endif } // swiftlint:enable period_spacing diff --git a/Sources/Nodes/Core/AbstractWorker.swift b/Sources/Nodes/Core/AbstractWorker.swift index e244c7418..3e76a508b 100644 --- a/Sources/Nodes/Core/AbstractWorker.swift +++ b/Sources/Nodes/Core/AbstractWorker.swift @@ -70,13 +70,15 @@ open class _BaseWorker: Worker { // swiftlint:disable:this type_name isWorking = false } + #if DEBUG + deinit { - #if DEBUG if isWorking { - assertionFailure("Lifecycle Violation: Expected `AbstractWorker` to stop before it is deallocated.") + assertionFailure("Lifecycle Violation: Expect `AbstractWorker` to stop before it is deallocated.") } - #endif } + + #endif } /** diff --git a/Sources/Nodes/Internal/WorkerController.swift b/Sources/Nodes/Internal/WorkerController.swift index 117fb97c0..ec2f1841c 100644 --- a/Sources/Nodes/Internal/WorkerController.swift +++ b/Sources/Nodes/Internal/WorkerController.swift @@ -93,16 +93,18 @@ public final class WorkerController { try workers(ofType: type).forEach(perform) } + #if DEBUG + deinit { - #if DEBUG for worker: Worker in workers { if worker.isWorking { assertionFailure(""" - Lifecycle Violation: Expected `Worker` to stop before `WorkerController` is deallocated. + Lifecycle Violation: Expect `Worker` instance to stop before `WorkerController` is deallocated. """) } LeakDetector.detect(worker) } - #endif } + + #endif }