nullability change
This commit is contained in:
parent
69499bf049
commit
54b510f98a
@ -28,7 +28,7 @@ public protocol MoleculeTreeTraversalProtocol {
|
|||||||
// Helper Extensions
|
// Helper Extensions
|
||||||
//
|
//
|
||||||
|
|
||||||
extension MoleculeTreeTraversalProtocol {
|
public extension MoleculeTreeTraversalProtocol {
|
||||||
|
|
||||||
func countMolecules(options: TreeTraversalOptions = .parentFirst) -> Int {
|
func countMolecules(options: TreeTraversalOptions = .parentFirst) -> Int {
|
||||||
return reduceDepthFirstTraverse(options: options, depth: 0, initialResult: 0) { (accumulator, molecule, depth) in
|
return reduceDepthFirstTraverse(options: options, depth: 0, initialResult: 0) { (accumulator, molecule, depth) in
|
||||||
|
|||||||
@ -66,7 +66,7 @@
|
|||||||
return molecule
|
return molecule
|
||||||
}
|
}
|
||||||
|
|
||||||
open override func shouldFinishProcessingLoad(_ loadObject: MVMCoreLoadObject, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject>) -> Bool {
|
open override func shouldFinishProcessingLoad(_ loadObject: MVMCoreLoadObject, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject?>) -> Bool {
|
||||||
guard super.shouldFinishProcessingLoad(loadObject, error: error) else { return false }
|
guard super.shouldFinishProcessingLoad(loadObject, error: error) else { return false }
|
||||||
|
|
||||||
// This template requires atleast one of the three layers.
|
// This template requires atleast one of the three layers.
|
||||||
|
|||||||
@ -122,7 +122,7 @@ import UIKit
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
open func shouldFinishProcessingLoad(_ loadObject: MVMCoreLoadObject, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject>) -> Bool {
|
open func shouldFinishProcessingLoad(_ loadObject: MVMCoreLoadObject, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject?>) -> Bool {
|
||||||
pageType = loadObject.pageType
|
pageType = loadObject.pageType
|
||||||
self.loadObject = loadObject
|
self.loadObject = loadObject
|
||||||
|
|
||||||
@ -186,7 +186,7 @@ import UIKit
|
|||||||
|
|
||||||
open func parsePageJSON() throws { }
|
open func parsePageJSON() throws { }
|
||||||
|
|
||||||
open class func verifyRequiredModulesLoaded(for loadObject: MVMCoreLoadObject?, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject>) -> Bool {
|
open class func verifyRequiredModulesLoaded(for loadObject: MVMCoreLoadObject?, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject?>) -> Bool {
|
||||||
guard let pageType = loadObject?.pageType,
|
guard let pageType = loadObject?.pageType,
|
||||||
var modulesRequired = MVMCoreUIViewControllerMappingObject.shared()?.modulesRequired(forPageType: pageType),
|
var modulesRequired = MVMCoreUIViewControllerMappingObject.shared()?.modulesRequired(forPageType: pageType),
|
||||||
!modulesRequired.isEmpty
|
!modulesRequired.isEmpty
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user