mirror of https://github.com/SnapKit/SnapKit
Merge pull request #285 from uny/feature/0.40.0
Make ConstraintDescription.constraint lazy
This commit is contained in:
commit
4da527ab19
|
@ -39,7 +39,7 @@ public class ConstraintDescription {
|
|||
internal var multiplier: ConstraintMultiplierTarget = 1.0
|
||||
internal var constant: ConstraintConstantTarget = 0.0
|
||||
internal var priority: ConstraintPriorityTarget = 1000.0
|
||||
internal var constraint: Constraint? {
|
||||
internal lazy var constraint: Constraint? = {
|
||||
guard let relation = self.relation,
|
||||
let related = self.related,
|
||||
let sourceLocation = self.sourceLocation else {
|
||||
|
@ -57,7 +57,7 @@ public class ConstraintDescription {
|
|||
constant: self.constant,
|
||||
priority: self.priority
|
||||
)
|
||||
}
|
||||
}()
|
||||
|
||||
// MARK: Initialization
|
||||
|
||||
|
|
Loading…
Reference in New Issue