lottie-ios 4.3.4 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +51 -58
- package/Lottie.xcodeproj/project.pbxproj +20 -0
- package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +4 -17
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +37 -40
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +9 -680
- package/Package.resolved +20 -22
- package/Package.swift +3 -2
- package/README.md +21 -3
- package/Rakefile +52 -28
- package/Sources/PrivacyInfo.xcprivacy +23 -0
- package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +1 -1
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +23 -13
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +8 -2
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +7 -1
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +15 -2
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +8 -1
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +8 -1
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +12 -1
- package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +0 -1
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +19 -11
- package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +45 -19
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +38 -3
- package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +1 -1
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +9 -2
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+timeRemapping.swift +46 -0
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +77 -13
- package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +1 -1
- package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +2 -2
- package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -1
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -7
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +19 -53
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +2 -2
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +2 -4
- package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +5 -2
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +1 -1
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +10 -10
- package/Sources/Private/EmbeddedLibraries/LRUCache/LRUCache.swift +3 -3
- package/Sources/Private/EmbeddedLibraries/README.md +2 -0
- package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift +2 -2
- package/Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift +7 -7
- package/Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift +2 -2
- package/Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift +5 -5
- package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -2
- package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +1 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +1 -2
- package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift +2 -3
- package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +5 -12
- package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +0 -1
- package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +0 -2
- package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +3 -3
- package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +12 -12
- package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -2
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +0 -2
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -3
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +0 -2
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +1 -3
- package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +1 -3
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +1 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +0 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +2 -3
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +1 -3
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +2 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +0 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift +0 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift +0 -2
- package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +0 -1
- package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
- package/Sources/Private/Model/Assets/Asset.swift +2 -3
- package/Sources/Private/Model/Assets/AssetLibrary.swift +11 -11
- package/Sources/Private/Model/Assets/ImageAsset.swift +20 -0
- package/Sources/Private/Model/Assets/PrecompAsset.swift +0 -2
- package/Sources/Private/Model/DictionaryInitializable.swift +18 -10
- package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +9 -6
- package/Sources/Private/Model/DotLottie/DotLottieUtils.swift +1 -1
- package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +0 -2
- package/Sources/Private/Model/Keyframes/KeyframeData.swift +1 -4
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +1 -3
- package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +0 -2
- package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +0 -2
- package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +2 -3
- package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +0 -2
- package/Sources/Private/Model/LayerEffects/LayerEffect.swift +2 -3
- package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +0 -2
- package/Sources/Private/Model/LayerStyles/LayerStyle.swift +2 -3
- package/Sources/Private/Model/Layers/ImageLayerModel.swift +0 -2
- package/Sources/Private/Model/Layers/LayerModel.swift +11 -5
- package/Sources/Private/Model/Layers/PreCompLayerModel.swift +0 -2
- package/Sources/Private/Model/Layers/ShapeLayerModel.swift +0 -2
- package/Sources/Private/Model/Layers/SolidLayerModel.swift +0 -2
- package/Sources/Private/Model/Layers/TextLayerModel.swift +0 -2
- package/Sources/Private/Model/Objects/DashPattern.swift +1 -3
- package/Sources/Private/Model/Objects/Marker.swift +0 -2
- package/Sources/Private/Model/Objects/Mask.swift +0 -2
- package/Sources/Private/Model/Objects/Transform.swift +46 -9
- package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Fill.swift +0 -2
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -3
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +1 -3
- package/Sources/Private/Model/ShapeItems/Group.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Merge.swift +1 -3
- package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -2
- package/Sources/Private/Model/ShapeItems/RoundedCorners.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Shape.swift +0 -2
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +2 -3
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Star.swift +1 -3
- package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -2
- package/Sources/Private/Model/ShapeItems/Trim.swift +1 -3
- package/Sources/Private/Model/Text/Font.swift +0 -2
- package/Sources/Private/Model/Text/Glyph.swift +0 -2
- package/Sources/Private/Model/Text/TextAnimator.swift +0 -2
- package/Sources/Private/Model/Text/TextDocument.swift +2 -4
- package/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift +0 -2
- package/Sources/Private/Utility/Debugging/LayerDebugging.swift +4 -5
- package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +2 -3
- package/Sources/Private/Utility/Extensions/DataExtension.swift +0 -1
- package/Sources/Private/Utility/Extensions/StringExtensions.swift +5 -0
- package/Sources/Private/Utility/Helpers/AnimationContext.swift +2 -3
- package/Sources/Private/Utility/Helpers/AnyEquatable.swift +0 -2
- package/Sources/Private/Utility/LottieAnimationSource.swift +11 -1
- package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -3
- package/Sources/Private/Utility/Primitives/CGPointExtension.swift +1 -1
- package/Sources/Private/Utility/Primitives/ColorExtension.swift +1 -2
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +6 -6
- package/Sources/Public/Animation/LottieAnimation.swift +2 -2
- package/Sources/Public/Animation/LottieAnimationHelpers.swift +7 -5
- package/Sources/Public/Animation/LottieAnimationLayer.swift +29 -43
- package/Sources/Public/Animation/LottieAnimationView.swift +6 -7
- package/Sources/Public/Animation/LottieAnimationViewInitializers.swift +3 -3
- package/Sources/Public/Animation/LottiePlaybackMode.swift +53 -0
- package/Sources/Public/Animation/LottieView.swift +143 -48
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +0 -2
- package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +11 -1
- package/Sources/Public/AnimationCache/LRUAnimationCache.swift +0 -2
- package/Sources/Public/Controls/AnimatedButton.swift +4 -6
- package/Sources/Public/Controls/AnimatedControl.swift +1 -3
- package/Sources/Public/Controls/AnimatedSwitch.swift +1 -3
- package/Sources/Public/DotLottie/Cache/DotLottieCache.swift +9 -0
- package/Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift +1 -3
- package/Sources/Public/DotLottie/DotLottieConfiguration.swift +53 -5
- package/Sources/Public/DotLottie/DotLottieFile.swift +4 -3
- package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +6 -6
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +0 -2
- package/Sources/Public/DynamicProperties/AnyValueProvider.swift +0 -1
- package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +2 -2
- package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +1 -1
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +1 -1
- package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +1 -1
- package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +1 -1
- package/Sources/Public/FontProvider/AnimationFontProvider.swift +0 -2
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +0 -2
- package/Sources/Public/Keyframes/Interpolatable.swift +26 -0
- package/Sources/Public/Primitives/LottieColor.swift +0 -2
- package/Sources/Public/Primitives/Vectors.swift +0 -2
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +0 -2
- package/Sources/Public/iOS/AnimationSubview.swift +0 -1
- package/Sources/Public/iOS/BundleImageProvider.swift +3 -8
- package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +4 -8
- package/Sources/Public/iOS/UIColorExtension.swift +1 -2
- package/Sources/Public/macOS/BundleImageProvider.macOS.swift +3 -6
- package/lottie-ios.podspec +5 -2
- package/package.json +1 -1
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -6
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -153
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/IDEFindNavigatorScopes.plist +0 -5
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +0 -231
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
CHANGED
|
@@ -7,704 +7,33 @@
|
|
|
7
7
|
<BreakpointProxy
|
|
8
8
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
9
9
|
<BreakpointContent
|
|
10
|
-
uuid = "
|
|
10
|
+
uuid = "8091EB50-102C-46B2-9DCE-9CC40A3FE4E9"
|
|
11
11
|
shouldBeEnabled = "No"
|
|
12
12
|
ignoreCount = "0"
|
|
13
13
|
continueAfterRunningActions = "No"
|
|
14
|
-
filePath = "Sources/Private/MainThread/
|
|
14
|
+
filePath = "Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift"
|
|
15
15
|
startingColumnNumber = "9223372036854775807"
|
|
16
16
|
endingColumnNumber = "9223372036854775807"
|
|
17
|
-
startingLineNumber = "
|
|
18
|
-
endingLineNumber = "
|
|
17
|
+
startingLineNumber = "112"
|
|
18
|
+
endingLineNumber = "112"
|
|
19
19
|
landmarkName = "rebuildOutputs(frame:)"
|
|
20
20
|
landmarkType = "7">
|
|
21
|
-
<Locations>
|
|
22
|
-
<Location
|
|
23
|
-
uuid = "9DC6749B-AFBA-42EA-B760-D50A245DEC24 - f0c945e8360ca5fb"
|
|
24
|
-
shouldBeEnabled = "Yes"
|
|
25
|
-
ignoreCount = "0"
|
|
26
|
-
continueAfterRunningActions = "No"
|
|
27
|
-
symbolName = "Lottie.LayerTransformNode.rebuildOutputs(frame: CoreGraphics.CGFloat) -> ()"
|
|
28
|
-
moduleName = "Lottie"
|
|
29
|
-
usesParentBreakpointCondition = "Yes"
|
|
30
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift"
|
|
31
|
-
startingColumnNumber = "9223372036854775807"
|
|
32
|
-
endingColumnNumber = "9223372036854775807"
|
|
33
|
-
startingLineNumber = "137"
|
|
34
|
-
endingLineNumber = "137"
|
|
35
|
-
offsetFromSymbolStart = "2042">
|
|
36
|
-
</Location>
|
|
37
|
-
<Location
|
|
38
|
-
uuid = "9DC6749B-AFBA-42EA-B760-D50A245DEC24 - f0c945e8360ca5fb"
|
|
39
|
-
shouldBeEnabled = "Yes"
|
|
40
|
-
ignoreCount = "0"
|
|
41
|
-
continueAfterRunningActions = "No"
|
|
42
|
-
symbolName = "Lottie.LayerTransformNode.rebuildOutputs(frame: CoreGraphics.CGFloat) -> ()"
|
|
43
|
-
moduleName = "Lottie"
|
|
44
|
-
usesParentBreakpointCondition = "Yes"
|
|
45
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift"
|
|
46
|
-
startingColumnNumber = "9223372036854775807"
|
|
47
|
-
endingColumnNumber = "9223372036854775807"
|
|
48
|
-
startingLineNumber = "137"
|
|
49
|
-
endingLineNumber = "137"
|
|
50
|
-
offsetFromSymbolStart = "2258">
|
|
51
|
-
</Location>
|
|
52
|
-
</Locations>
|
|
53
21
|
</BreakpointContent>
|
|
54
22
|
</BreakpointProxy>
|
|
55
23
|
<BreakpointProxy
|
|
56
24
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
57
25
|
<BreakpointContent
|
|
58
|
-
uuid = "
|
|
26
|
+
uuid = "CC3C8E8A-14BE-4C8D-8423-0224C306B322"
|
|
59
27
|
shouldBeEnabled = "No"
|
|
60
|
-
condition = "customizableProperty.name.map { $0.rawValue } == ["Position"]"
|
|
61
|
-
ignoreCount = "0"
|
|
62
|
-
continueAfterRunningActions = "No"
|
|
63
|
-
filePath = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
64
|
-
startingColumnNumber = "9223372036854775807"
|
|
65
|
-
endingColumnNumber = "9223372036854775807"
|
|
66
|
-
startingLineNumber = "104"
|
|
67
|
-
endingLineNumber = "104"
|
|
68
|
-
landmarkName = "CALayer"
|
|
69
|
-
landmarkType = "21">
|
|
70
|
-
<Locations>
|
|
71
|
-
<Location
|
|
72
|
-
uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
|
|
73
|
-
shouldBeEnabled = "Yes"
|
|
74
|
-
ignoreCount = "0"
|
|
75
|
-
continueAfterRunningActions = "No"
|
|
76
|
-
symbolName = "__C.CALayer.customizedAnimation<τ_0_0>(for: Lottie.LayerProperty<τ_0_0>, context: Lottie.LayerAnimationContext) throws -> Swift.Optional<__C.CAPropertyAnimation>"
|
|
77
|
-
moduleName = "Lottie"
|
|
78
|
-
usesParentBreakpointCondition = "Yes"
|
|
79
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
80
|
-
startingColumnNumber = "9223372036854775807"
|
|
81
|
-
endingColumnNumber = "9223372036854775807"
|
|
82
|
-
startingLineNumber = "106"
|
|
83
|
-
endingLineNumber = "106"
|
|
84
|
-
offsetFromSymbolStart = "156">
|
|
85
|
-
</Location>
|
|
86
|
-
<Location
|
|
87
|
-
uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
|
|
88
|
-
shouldBeEnabled = "Yes"
|
|
89
|
-
ignoreCount = "0"
|
|
90
|
-
continueAfterRunningActions = "No"
|
|
91
|
-
symbolName = "__C.CALayer.customizedAnimation<τ_0_0>(for: Lottie.LayerProperty<τ_0_0>, context: Lottie.LayerAnimationContext) throws -> Swift.Optional<__C.CAPropertyAnimation>"
|
|
92
|
-
moduleName = "Lottie"
|
|
93
|
-
usesParentBreakpointCondition = "Yes"
|
|
94
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
95
|
-
startingColumnNumber = "9223372036854775807"
|
|
96
|
-
endingColumnNumber = "9223372036854775807"
|
|
97
|
-
startingLineNumber = "106"
|
|
98
|
-
endingLineNumber = "106"
|
|
99
|
-
offsetFromSymbolStart = "220">
|
|
100
|
-
</Location>
|
|
101
|
-
</Locations>
|
|
102
|
-
</BreakpointContent>
|
|
103
|
-
</BreakpointProxy>
|
|
104
|
-
<BreakpointProxy
|
|
105
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
106
|
-
<BreakpointContent
|
|
107
|
-
uuid = "F52F692F-1F08-4469-8EE8-C10D7FC89847"
|
|
108
|
-
shouldBeEnabled = "No"
|
|
109
|
-
condition = "context.currentKeypath.fullPath.contains("Group 1")"
|
|
110
28
|
ignoreCount = "0"
|
|
111
29
|
continueAfterRunningActions = "No"
|
|
112
30
|
filePath = "Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift"
|
|
113
31
|
startingColumnNumber = "9223372036854775807"
|
|
114
32
|
endingColumnNumber = "9223372036854775807"
|
|
115
|
-
startingLineNumber = "
|
|
116
|
-
endingLineNumber = "
|
|
117
|
-
landmarkName = "
|
|
118
|
-
landmarkType = "
|
|
119
|
-
</BreakpointContent>
|
|
120
|
-
</BreakpointProxy>
|
|
121
|
-
<BreakpointProxy
|
|
122
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
123
|
-
<BreakpointContent
|
|
124
|
-
uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
|
|
125
|
-
shouldBeEnabled = "No"
|
|
126
|
-
ignoreCount = "0"
|
|
127
|
-
continueAfterRunningActions = "No"
|
|
128
|
-
filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
|
|
129
|
-
startingColumnNumber = "9223372036854775807"
|
|
130
|
-
endingColumnNumber = "9223372036854775807"
|
|
131
|
-
startingLineNumber = "116"
|
|
132
|
-
endingLineNumber = "116"
|
|
133
|
-
landmarkName = "Trim"
|
|
134
|
-
landmarkType = "21">
|
|
135
|
-
</BreakpointContent>
|
|
136
|
-
</BreakpointProxy>
|
|
137
|
-
<BreakpointProxy
|
|
138
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
139
|
-
<BreakpointContent
|
|
140
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B"
|
|
141
|
-
shouldBeEnabled = "Yes"
|
|
142
|
-
ignoreCount = "0"
|
|
143
|
-
continueAfterRunningActions = "No"
|
|
144
|
-
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
145
|
-
startingColumnNumber = "9223372036854775807"
|
|
146
|
-
endingColumnNumber = "9223372036854775807"
|
|
147
|
-
startingLineNumber = "411"
|
|
148
|
-
endingLineNumber = "411"
|
|
149
|
-
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
150
|
-
landmarkType = "7">
|
|
151
|
-
<Locations>
|
|
152
|
-
<Location
|
|
153
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
154
|
-
shouldBeEnabled = "Yes"
|
|
155
|
-
ignoreCount = "0"
|
|
156
|
-
continueAfterRunningActions = "No"
|
|
157
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
158
|
-
moduleName = "Lottie"
|
|
159
|
-
usesParentBreakpointCondition = "Yes"
|
|
160
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
161
|
-
startingColumnNumber = "9223372036854775807"
|
|
162
|
-
endingColumnNumber = "9223372036854775807"
|
|
163
|
-
startingLineNumber = "412"
|
|
164
|
-
endingLineNumber = "412"
|
|
165
|
-
offsetFromSymbolStart = "116">
|
|
166
|
-
</Location>
|
|
167
|
-
<Location
|
|
168
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
169
|
-
shouldBeEnabled = "Yes"
|
|
170
|
-
ignoreCount = "0"
|
|
171
|
-
continueAfterRunningActions = "No"
|
|
172
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
173
|
-
moduleName = "Example (Multiplatform)"
|
|
174
|
-
usesParentBreakpointCondition = "Yes"
|
|
175
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
176
|
-
startingColumnNumber = "9223372036854775807"
|
|
177
|
-
endingColumnNumber = "9223372036854775807"
|
|
178
|
-
startingLineNumber = "412"
|
|
179
|
-
endingLineNumber = "412"
|
|
180
|
-
offsetFromSymbolStart = "116">
|
|
181
|
-
</Location>
|
|
182
|
-
<Location
|
|
183
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
184
|
-
shouldBeEnabled = "Yes"
|
|
185
|
-
ignoreCount = "0"
|
|
186
|
-
continueAfterRunningActions = "No"
|
|
187
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
188
|
-
moduleName = "Example (Multiplatform)"
|
|
189
|
-
usesParentBreakpointCondition = "Yes"
|
|
190
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
191
|
-
startingColumnNumber = "9223372036854775807"
|
|
192
|
-
endingColumnNumber = "9223372036854775807"
|
|
193
|
-
startingLineNumber = "412"
|
|
194
|
-
endingLineNumber = "412"
|
|
195
|
-
offsetFromSymbolStart = "100">
|
|
196
|
-
</Location>
|
|
197
|
-
<Location
|
|
198
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
199
|
-
shouldBeEnabled = "Yes"
|
|
200
|
-
ignoreCount = "0"
|
|
201
|
-
continueAfterRunningActions = "No"
|
|
202
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
203
|
-
moduleName = "Example (Multiplatform)"
|
|
204
|
-
usesParentBreakpointCondition = "Yes"
|
|
205
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
206
|
-
startingColumnNumber = "9223372036854775807"
|
|
207
|
-
endingColumnNumber = "9223372036854775807"
|
|
208
|
-
startingLineNumber = "412"
|
|
209
|
-
endingLineNumber = "412"
|
|
210
|
-
offsetFromSymbolStart = "127">
|
|
211
|
-
</Location>
|
|
212
|
-
<Location
|
|
213
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
214
|
-
shouldBeEnabled = "Yes"
|
|
215
|
-
ignoreCount = "0"
|
|
216
|
-
continueAfterRunningActions = "No"
|
|
217
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
218
|
-
moduleName = "Lottie"
|
|
219
|
-
usesParentBreakpointCondition = "Yes"
|
|
220
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
221
|
-
startingColumnNumber = "9223372036854775807"
|
|
222
|
-
endingColumnNumber = "9223372036854775807"
|
|
223
|
-
startingLineNumber = "412"
|
|
224
|
-
endingLineNumber = "412"
|
|
225
|
-
offsetFromSymbolStart = "127">
|
|
226
|
-
</Location>
|
|
227
|
-
<Location
|
|
228
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
229
|
-
shouldBeEnabled = "Yes"
|
|
230
|
-
ignoreCount = "0"
|
|
231
|
-
continueAfterRunningActions = "No"
|
|
232
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
233
|
-
moduleName = "Lottie"
|
|
234
|
-
usesParentBreakpointCondition = "Yes"
|
|
235
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
236
|
-
startingColumnNumber = "9223372036854775807"
|
|
237
|
-
endingColumnNumber = "9223372036854775807"
|
|
238
|
-
startingLineNumber = "412"
|
|
239
|
-
endingLineNumber = "412"
|
|
240
|
-
offsetFromSymbolStart = "99">
|
|
241
|
-
</Location>
|
|
242
|
-
<Location
|
|
243
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - a6d45bb5484d1294"
|
|
244
|
-
shouldBeEnabled = "Yes"
|
|
245
|
-
ignoreCount = "0"
|
|
246
|
-
continueAfterRunningActions = "No"
|
|
247
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
248
|
-
moduleName = "lottieBugReproduction"
|
|
249
|
-
usesParentBreakpointCondition = "Yes"
|
|
250
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
251
|
-
startingColumnNumber = "9223372036854775807"
|
|
252
|
-
endingColumnNumber = "9223372036854775807"
|
|
253
|
-
startingLineNumber = "412"
|
|
254
|
-
endingLineNumber = "412"
|
|
255
|
-
offsetFromSymbolStart = "99">
|
|
256
|
-
</Location>
|
|
257
|
-
<Location
|
|
258
|
-
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88ff5"
|
|
259
|
-
shouldBeEnabled = "Yes"
|
|
260
|
-
ignoreCount = "0"
|
|
261
|
-
continueAfterRunningActions = "No"
|
|
262
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
263
|
-
moduleName = "Example (Multiplatform)"
|
|
264
|
-
usesParentBreakpointCondition = "Yes"
|
|
265
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
266
|
-
startingColumnNumber = "9223372036854775807"
|
|
267
|
-
endingColumnNumber = "9223372036854775807"
|
|
268
|
-
startingLineNumber = "411"
|
|
269
|
-
endingLineNumber = "411"
|
|
270
|
-
offsetFromSymbolStart = "107">
|
|
271
|
-
</Location>
|
|
272
|
-
</Locations>
|
|
273
|
-
</BreakpointContent>
|
|
274
|
-
</BreakpointProxy>
|
|
275
|
-
<BreakpointProxy
|
|
276
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
277
|
-
<BreakpointContent
|
|
278
|
-
uuid = "1B4030EA-5C63-4382-BA53-C41BB0EA078E"
|
|
279
|
-
shouldBeEnabled = "Yes"
|
|
280
|
-
ignoreCount = "0"
|
|
281
|
-
continueAfterRunningActions = "No"
|
|
282
|
-
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
283
|
-
startingColumnNumber = "9223372036854775807"
|
|
284
|
-
endingColumnNumber = "9223372036854775807"
|
|
285
|
-
startingLineNumber = "413"
|
|
286
|
-
endingLineNumber = "413"
|
|
287
|
-
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
288
|
-
landmarkType = "7">
|
|
289
|
-
</BreakpointContent>
|
|
290
|
-
</BreakpointProxy>
|
|
291
|
-
<BreakpointProxy
|
|
292
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
293
|
-
<BreakpointContent
|
|
294
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122"
|
|
295
|
-
shouldBeEnabled = "Yes"
|
|
296
|
-
ignoreCount = "0"
|
|
297
|
-
continueAfterRunningActions = "No"
|
|
298
|
-
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
299
|
-
startingColumnNumber = "9223372036854775807"
|
|
300
|
-
endingColumnNumber = "9223372036854775807"
|
|
301
|
-
startingLineNumber = "393"
|
|
302
|
-
endingLineNumber = "393"
|
|
303
|
-
landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
|
|
304
|
-
landmarkType = "7">
|
|
305
|
-
<Locations>
|
|
306
|
-
<Location
|
|
307
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
308
|
-
shouldBeEnabled = "Yes"
|
|
309
|
-
ignoreCount = "0"
|
|
310
|
-
continueAfterRunningActions = "No"
|
|
311
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
312
|
-
moduleName = "Lottie"
|
|
313
|
-
usesParentBreakpointCondition = "Yes"
|
|
314
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
315
|
-
startingColumnNumber = "9223372036854775807"
|
|
316
|
-
endingColumnNumber = "9223372036854775807"
|
|
317
|
-
startingLineNumber = "393"
|
|
318
|
-
endingLineNumber = "393"
|
|
319
|
-
offsetFromSymbolStart = "124">
|
|
320
|
-
</Location>
|
|
321
|
-
<Location
|
|
322
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
323
|
-
shouldBeEnabled = "Yes"
|
|
324
|
-
ignoreCount = "0"
|
|
325
|
-
continueAfterRunningActions = "No"
|
|
326
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
327
|
-
moduleName = "Example (Multiplatform)"
|
|
328
|
-
usesParentBreakpointCondition = "Yes"
|
|
329
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
330
|
-
startingColumnNumber = "9223372036854775807"
|
|
331
|
-
endingColumnNumber = "9223372036854775807"
|
|
332
|
-
startingLineNumber = "393"
|
|
333
|
-
endingLineNumber = "393"
|
|
334
|
-
offsetFromSymbolStart = "124">
|
|
335
|
-
</Location>
|
|
336
|
-
<Location
|
|
337
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
338
|
-
shouldBeEnabled = "Yes"
|
|
339
|
-
ignoreCount = "0"
|
|
340
|
-
continueAfterRunningActions = "No"
|
|
341
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
342
|
-
moduleName = "Example (Multiplatform)"
|
|
343
|
-
usesParentBreakpointCondition = "Yes"
|
|
344
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
345
|
-
startingColumnNumber = "9223372036854775807"
|
|
346
|
-
endingColumnNumber = "9223372036854775807"
|
|
347
|
-
startingLineNumber = "393"
|
|
348
|
-
endingLineNumber = "393"
|
|
349
|
-
offsetFromSymbolStart = "108">
|
|
350
|
-
</Location>
|
|
351
|
-
<Location
|
|
352
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
353
|
-
shouldBeEnabled = "Yes"
|
|
354
|
-
ignoreCount = "0"
|
|
355
|
-
continueAfterRunningActions = "No"
|
|
356
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
357
|
-
moduleName = "Example (Multiplatform)"
|
|
358
|
-
usesParentBreakpointCondition = "Yes"
|
|
359
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
360
|
-
startingColumnNumber = "9223372036854775807"
|
|
361
|
-
endingColumnNumber = "9223372036854775807"
|
|
362
|
-
startingLineNumber = "393"
|
|
363
|
-
endingLineNumber = "393"
|
|
364
|
-
offsetFromSymbolStart = "128">
|
|
365
|
-
</Location>
|
|
366
|
-
<Location
|
|
367
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
368
|
-
shouldBeEnabled = "Yes"
|
|
369
|
-
ignoreCount = "0"
|
|
370
|
-
continueAfterRunningActions = "No"
|
|
371
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
372
|
-
moduleName = "Lottie"
|
|
373
|
-
usesParentBreakpointCondition = "Yes"
|
|
374
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
375
|
-
startingColumnNumber = "9223372036854775807"
|
|
376
|
-
endingColumnNumber = "9223372036854775807"
|
|
377
|
-
startingLineNumber = "393"
|
|
378
|
-
endingLineNumber = "393"
|
|
379
|
-
offsetFromSymbolStart = "128">
|
|
380
|
-
</Location>
|
|
381
|
-
<Location
|
|
382
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
383
|
-
shouldBeEnabled = "Yes"
|
|
384
|
-
ignoreCount = "0"
|
|
385
|
-
continueAfterRunningActions = "No"
|
|
386
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
387
|
-
moduleName = "Lottie"
|
|
388
|
-
usesParentBreakpointCondition = "Yes"
|
|
389
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
390
|
-
startingColumnNumber = "9223372036854775807"
|
|
391
|
-
endingColumnNumber = "9223372036854775807"
|
|
392
|
-
startingLineNumber = "393"
|
|
393
|
-
endingLineNumber = "393"
|
|
394
|
-
offsetFromSymbolStart = "97">
|
|
395
|
-
</Location>
|
|
396
|
-
<Location
|
|
397
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 205d4f501848c002"
|
|
398
|
-
shouldBeEnabled = "Yes"
|
|
399
|
-
ignoreCount = "0"
|
|
400
|
-
continueAfterRunningActions = "No"
|
|
401
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
402
|
-
moduleName = "lottieBugReproduction"
|
|
403
|
-
usesParentBreakpointCondition = "Yes"
|
|
404
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
405
|
-
startingColumnNumber = "9223372036854775807"
|
|
406
|
-
endingColumnNumber = "9223372036854775807"
|
|
407
|
-
startingLineNumber = "393"
|
|
408
|
-
endingLineNumber = "393"
|
|
409
|
-
offsetFromSymbolStart = "97">
|
|
410
|
-
</Location>
|
|
411
|
-
<Location
|
|
412
|
-
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5ae7"
|
|
413
|
-
shouldBeEnabled = "Yes"
|
|
414
|
-
ignoreCount = "0"
|
|
415
|
-
continueAfterRunningActions = "No"
|
|
416
|
-
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
417
|
-
moduleName = "Example (Multiplatform)"
|
|
418
|
-
usesParentBreakpointCondition = "Yes"
|
|
419
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
420
|
-
startingColumnNumber = "9223372036854775807"
|
|
421
|
-
endingColumnNumber = "9223372036854775807"
|
|
422
|
-
startingLineNumber = "394"
|
|
423
|
-
endingLineNumber = "394"
|
|
424
|
-
offsetFromSymbolStart = "97">
|
|
425
|
-
</Location>
|
|
426
|
-
</Locations>
|
|
427
|
-
</BreakpointContent>
|
|
428
|
-
</BreakpointProxy>
|
|
429
|
-
<BreakpointProxy
|
|
430
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
431
|
-
<BreakpointContent
|
|
432
|
-
uuid = "58C50FA3-5DB1-4BDC-963D-554C96793B8E"
|
|
433
|
-
shouldBeEnabled = "Yes"
|
|
434
|
-
ignoreCount = "0"
|
|
435
|
-
continueAfterRunningActions = "No"
|
|
436
|
-
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
437
|
-
startingColumnNumber = "9223372036854775807"
|
|
438
|
-
endingColumnNumber = "9223372036854775807"
|
|
439
|
-
startingLineNumber = "415"
|
|
440
|
-
endingLineNumber = "415"
|
|
441
|
-
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
442
|
-
landmarkType = "7">
|
|
443
|
-
</BreakpointContent>
|
|
444
|
-
</BreakpointProxy>
|
|
445
|
-
<BreakpointProxy
|
|
446
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
447
|
-
<BreakpointContent
|
|
448
|
-
uuid = "46F5CCC2-A2B4-43BB-9372-588E157C15F8"
|
|
449
|
-
shouldBeEnabled = "Yes"
|
|
450
|
-
ignoreCount = "0"
|
|
451
|
-
continueAfterRunningActions = "No"
|
|
452
|
-
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
453
|
-
startingColumnNumber = "9223372036854775807"
|
|
454
|
-
endingColumnNumber = "9223372036854775807"
|
|
455
|
-
startingLineNumber = "395"
|
|
456
|
-
endingLineNumber = "395"
|
|
457
|
-
landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
|
|
458
|
-
landmarkType = "7">
|
|
459
|
-
</BreakpointContent>
|
|
460
|
-
</BreakpointProxy>
|
|
461
|
-
<BreakpointProxy
|
|
462
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
463
|
-
<BreakpointContent
|
|
464
|
-
uuid = "8FB76DCA-529E-41F7-9C40-3BA6FA8DF134"
|
|
465
|
-
shouldBeEnabled = "No"
|
|
466
|
-
ignoreCount = "0"
|
|
467
|
-
continueAfterRunningActions = "No"
|
|
468
|
-
filePath = "Sources/Public/iOS/AnimatedSwitch.swift"
|
|
469
|
-
startingColumnNumber = "9223372036854775807"
|
|
470
|
-
endingColumnNumber = "9223372036854775807"
|
|
471
|
-
startingLineNumber = "220"
|
|
472
|
-
endingLineNumber = "220"
|
|
473
|
-
landmarkName = "unknown"
|
|
474
|
-
landmarkType = "0">
|
|
475
|
-
</BreakpointContent>
|
|
476
|
-
</BreakpointProxy>
|
|
477
|
-
<BreakpointProxy
|
|
478
|
-
BreakpointExtensionID = "Xcode.Breakpoint.SymbolicBreakpoint">
|
|
479
|
-
<BreakpointContent
|
|
480
|
-
uuid = "F7CB69A9-F174-4CF0-8C0C-F43E48DE48B2"
|
|
481
|
-
shouldBeEnabled = "Yes"
|
|
482
|
-
ignoreCount = "0"
|
|
483
|
-
continueAfterRunningActions = "No"
|
|
484
|
-
symbolName = ""
|
|
485
|
-
moduleName = "">
|
|
486
|
-
<Locations>
|
|
487
|
-
</Locations>
|
|
488
|
-
</BreakpointContent>
|
|
489
|
-
</BreakpointProxy>
|
|
490
|
-
<BreakpointProxy
|
|
491
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
492
|
-
<BreakpointContent
|
|
493
|
-
uuid = "3C169A2A-85F7-4FD3-ACB3-C255C87766C1"
|
|
494
|
-
shouldBeEnabled = "No"
|
|
495
|
-
ignoreCount = "0"
|
|
496
|
-
continueAfterRunningActions = "No"
|
|
497
|
-
filePath = "Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift"
|
|
498
|
-
startingColumnNumber = "9223372036854775807"
|
|
499
|
-
endingColumnNumber = "9223372036854775807"
|
|
500
|
-
startingLineNumber = "55"
|
|
501
|
-
endingLineNumber = "55">
|
|
502
|
-
</BreakpointContent>
|
|
503
|
-
</BreakpointProxy>
|
|
504
|
-
<BreakpointProxy
|
|
505
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
506
|
-
<BreakpointContent
|
|
507
|
-
uuid = "BD2B1B69-E42C-4C98-860F-8C129397EEE7"
|
|
508
|
-
shouldBeEnabled = "No"
|
|
509
|
-
ignoreCount = "0"
|
|
510
|
-
continueAfterRunningActions = "No"
|
|
511
|
-
filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
|
|
512
|
-
startingColumnNumber = "9223372036854775807"
|
|
513
|
-
endingColumnNumber = "9223372036854775807"
|
|
514
|
-
startingLineNumber = "160"
|
|
515
|
-
endingLineNumber = "160"
|
|
516
|
-
landmarkName = "layerKeypaths(for:)"
|
|
517
|
-
landmarkType = "7">
|
|
518
|
-
</BreakpointContent>
|
|
519
|
-
</BreakpointProxy>
|
|
520
|
-
<BreakpointProxy
|
|
521
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
522
|
-
<BreakpointContent
|
|
523
|
-
uuid = "7F8F379C-35B0-4F4B-B25F-4A6D5910F1DA"
|
|
524
|
-
shouldBeEnabled = "No"
|
|
525
|
-
ignoreCount = "0"
|
|
526
|
-
continueAfterRunningActions = "No"
|
|
527
|
-
filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
|
|
528
|
-
startingColumnNumber = "9223372036854775807"
|
|
529
|
-
endingColumnNumber = "9223372036854775807"
|
|
530
|
-
startingLineNumber = "165"
|
|
531
|
-
endingLineNumber = "165"
|
|
532
|
-
landmarkName = "layerKeypaths(for:)"
|
|
533
|
-
landmarkType = "7">
|
|
534
|
-
</BreakpointContent>
|
|
535
|
-
</BreakpointProxy>
|
|
536
|
-
<BreakpointProxy
|
|
537
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
538
|
-
<BreakpointContent
|
|
539
|
-
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70"
|
|
540
|
-
shouldBeEnabled = "Yes"
|
|
541
|
-
ignoreCount = "0"
|
|
542
|
-
continueAfterRunningActions = "No"
|
|
543
|
-
filePath = "Sources/Public/iOS/FilepathImageProvider.swift"
|
|
544
|
-
startingColumnNumber = "9223372036854775807"
|
|
545
|
-
endingColumnNumber = "9223372036854775807"
|
|
546
|
-
startingLineNumber = "40"
|
|
547
|
-
endingLineNumber = "40"
|
|
548
|
-
landmarkName = "imageForAsset(asset:)"
|
|
549
|
-
landmarkType = "7">
|
|
550
|
-
<Locations>
|
|
551
|
-
<Location
|
|
552
|
-
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - e420b5ae81b770cf"
|
|
553
|
-
shouldBeEnabled = "Yes"
|
|
554
|
-
ignoreCount = "0"
|
|
555
|
-
continueAfterRunningActions = "No"
|
|
556
|
-
symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -> Swift.Optional<__C.CGImageRef>"
|
|
557
|
-
moduleName = "Lottie"
|
|
558
|
-
usesParentBreakpointCondition = "Yes"
|
|
559
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
|
|
560
|
-
startingColumnNumber = "9223372036854775807"
|
|
561
|
-
endingColumnNumber = "9223372036854775807"
|
|
562
|
-
startingLineNumber = "40"
|
|
563
|
-
endingLineNumber = "40"
|
|
564
|
-
offsetFromSymbolStart = "724">
|
|
565
|
-
</Location>
|
|
566
|
-
<Location
|
|
567
|
-
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - 505df6532c6b683a"
|
|
568
|
-
shouldBeEnabled = "Yes"
|
|
569
|
-
ignoreCount = "0"
|
|
570
|
-
continueAfterRunningActions = "No"
|
|
571
|
-
symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -> Swift.Optional<__C.CGImageRef>"
|
|
572
|
-
moduleName = "lottieBugReproduction"
|
|
573
|
-
usesParentBreakpointCondition = "Yes"
|
|
574
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
|
|
575
|
-
startingColumnNumber = "9223372036854775807"
|
|
576
|
-
endingColumnNumber = "9223372036854775807"
|
|
577
|
-
startingLineNumber = "40"
|
|
578
|
-
endingLineNumber = "40"
|
|
579
|
-
offsetFromSymbolStart = "724">
|
|
580
|
-
</Location>
|
|
581
|
-
<Location
|
|
582
|
-
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - e420b5ae81b770cf"
|
|
583
|
-
shouldBeEnabled = "Yes"
|
|
584
|
-
ignoreCount = "0"
|
|
585
|
-
continueAfterRunningActions = "No"
|
|
586
|
-
symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -> Swift.Optional<__C.CGImageRef>"
|
|
587
|
-
moduleName = "Lottie"
|
|
588
|
-
usesParentBreakpointCondition = "Yes"
|
|
589
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
|
|
590
|
-
startingColumnNumber = "9223372036854775807"
|
|
591
|
-
endingColumnNumber = "9223372036854775807"
|
|
592
|
-
startingLineNumber = "40"
|
|
593
|
-
endingLineNumber = "40"
|
|
594
|
-
offsetFromSymbolStart = "1171">
|
|
595
|
-
</Location>
|
|
596
|
-
<Location
|
|
597
|
-
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70 - 7e2b426f31fef53c"
|
|
598
|
-
shouldBeEnabled = "Yes"
|
|
599
|
-
ignoreCount = "0"
|
|
600
|
-
continueAfterRunningActions = "No"
|
|
601
|
-
symbolName = "Lottie.FilepathImageProvider.imageForAsset(asset: Lottie.ImageAsset) -> Swift.Optional<__C.CGImageRef>"
|
|
602
|
-
moduleName = "Example (Multiplatform)"
|
|
603
|
-
usesParentBreakpointCondition = "Yes"
|
|
604
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Public/iOS/FilepathImageProvider.swift"
|
|
605
|
-
startingColumnNumber = "9223372036854775807"
|
|
606
|
-
endingColumnNumber = "9223372036854775807"
|
|
607
|
-
startingLineNumber = "40"
|
|
608
|
-
endingLineNumber = "40"
|
|
609
|
-
offsetFromSymbolStart = "724">
|
|
610
|
-
</Location>
|
|
611
|
-
</Locations>
|
|
612
|
-
</BreakpointContent>
|
|
613
|
-
</BreakpointProxy>
|
|
614
|
-
<BreakpointProxy
|
|
615
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
616
|
-
<BreakpointContent
|
|
617
|
-
uuid = "2DA5783A-2045-4949-B58C-D2CC2CAFB2DD"
|
|
618
|
-
shouldBeEnabled = "No"
|
|
619
|
-
ignoreCount = "0"
|
|
620
|
-
continueAfterRunningActions = "No"
|
|
621
|
-
filePath = "Sources/Private/CoreAnimation/CoreAnimationLayer.swift"
|
|
622
|
-
startingColumnNumber = "9223372036854775807"
|
|
623
|
-
endingColumnNumber = "9223372036854775807"
|
|
624
|
-
startingLineNumber = "136"
|
|
625
|
-
endingLineNumber = "136"
|
|
626
|
-
landmarkName = "playAnimation(configuration:playbackState:)"
|
|
627
|
-
landmarkType = "7">
|
|
628
|
-
</BreakpointContent>
|
|
629
|
-
</BreakpointProxy>
|
|
630
|
-
<BreakpointProxy
|
|
631
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
632
|
-
<BreakpointContent
|
|
633
|
-
uuid = "2072A61F-3E42-440F-AC47-65B54BC1B0B6"
|
|
634
|
-
shouldBeEnabled = "No"
|
|
635
|
-
ignoreCount = "0"
|
|
636
|
-
continueAfterRunningActions = "No"
|
|
637
|
-
filePath = "Sources/Private/CoreAnimation/CoreAnimationLayer.swift"
|
|
638
|
-
startingColumnNumber = "9223372036854775807"
|
|
639
|
-
endingColumnNumber = "9223372036854775807"
|
|
640
|
-
startingLineNumber = "165"
|
|
641
|
-
endingLineNumber = "165"
|
|
642
|
-
landmarkName = "display()"
|
|
643
|
-
landmarkType = "7">
|
|
644
|
-
</BreakpointContent>
|
|
645
|
-
</BreakpointProxy>
|
|
646
|
-
<BreakpointProxy
|
|
647
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
648
|
-
<BreakpointContent
|
|
649
|
-
uuid = "32B9C255-985F-49E5-98A9-E22C87338B37"
|
|
650
|
-
shouldBeEnabled = "No"
|
|
651
|
-
ignoreCount = "0"
|
|
652
|
-
continueAfterRunningActions = "No"
|
|
653
|
-
filePath = "Sources/Public/Animation/LottieView.swift"
|
|
654
|
-
startingColumnNumber = "9223372036854775807"
|
|
655
|
-
endingColumnNumber = "9223372036854775807"
|
|
656
|
-
startingLineNumber = "156"
|
|
657
|
-
endingLineNumber = "156"
|
|
658
|
-
landmarkName = "body"
|
|
659
|
-
landmarkType = "24">
|
|
660
|
-
</BreakpointContent>
|
|
661
|
-
</BreakpointProxy>
|
|
662
|
-
<BreakpointProxy
|
|
663
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
664
|
-
<BreakpointContent
|
|
665
|
-
uuid = "482CC806-EDF2-4272-92C3-DEBDE27B896D"
|
|
666
|
-
shouldBeEnabled = "No"
|
|
667
|
-
ignoreCount = "0"
|
|
668
|
-
continueAfterRunningActions = "No"
|
|
669
|
-
filePath = "Sources/Public/Animation/LottieView.swift"
|
|
670
|
-
startingColumnNumber = "9223372036854775807"
|
|
671
|
-
endingColumnNumber = "9223372036854775807"
|
|
672
|
-
startingLineNumber = "396"
|
|
673
|
-
endingLineNumber = "396"
|
|
674
|
-
landmarkName = "reloadAnimationTrigger(_:showPlaceholder:)"
|
|
675
|
-
landmarkType = "7">
|
|
676
|
-
</BreakpointContent>
|
|
677
|
-
</BreakpointProxy>
|
|
678
|
-
<BreakpointProxy
|
|
679
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
680
|
-
<BreakpointContent
|
|
681
|
-
uuid = "B0E97E57-281C-4787-BE2F-03F9AB8F2A0A"
|
|
682
|
-
shouldBeEnabled = "No"
|
|
683
|
-
ignoreCount = "0"
|
|
684
|
-
continueAfterRunningActions = "No"
|
|
685
|
-
filePath = "Example/Example/AnimationPreviewView.swift"
|
|
686
|
-
startingColumnNumber = "9223372036854775807"
|
|
687
|
-
endingColumnNumber = "9223372036854775807"
|
|
688
|
-
startingLineNumber = "205"
|
|
689
|
-
endingLineNumber = "205"
|
|
690
|
-
landmarkName = "option(_:keyPath:value:)"
|
|
691
|
-
landmarkType = "7">
|
|
692
|
-
</BreakpointContent>
|
|
693
|
-
</BreakpointProxy>
|
|
694
|
-
<BreakpointProxy
|
|
695
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
696
|
-
<BreakpointContent
|
|
697
|
-
uuid = "223C727A-14EC-4AD5-9CAE-C6B25769F657"
|
|
698
|
-
shouldBeEnabled = "No"
|
|
699
|
-
ignoreCount = "0"
|
|
700
|
-
continueAfterRunningActions = "No"
|
|
701
|
-
filePath = "Sources/Public/Animation/LottieView.swift"
|
|
702
|
-
startingColumnNumber = "9223372036854775807"
|
|
703
|
-
endingColumnNumber = "9223372036854775807"
|
|
704
|
-
startingLineNumber = "240"
|
|
705
|
-
endingLineNumber = "240"
|
|
706
|
-
landmarkName = "animationDidFinish(_:)"
|
|
707
|
-
landmarkType = "7">
|
|
33
|
+
startingLineNumber = "245"
|
|
34
|
+
endingLineNumber = "245"
|
|
35
|
+
landmarkName = "ShapeItemLayer"
|
|
36
|
+
landmarkType = "3">
|
|
708
37
|
</BreakpointContent>
|
|
709
38
|
</BreakpointProxy>
|
|
710
39
|
</Breakpoints>
|