The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-w3c-css, reference 0.3.0 (fc9760), with Swift 6.3 for Android on 23 Apr 2026 19:26:41 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

    |                                                                                                `- note: use 'rawValue' instead
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
215 |                     }
216 |                 }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
215 |                     }
216 |                 }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[650/668] Compiling W3C_CSS_Shared CSS.Context.swift
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:37:33: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 35 |         /// Example output: `"circle(50px at 100px 100px)"`
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
    |                                 |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                 `- note: use 'rawValue' instead
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
 39 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                         `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:105: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                         `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:150: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                                                                                                                      |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                      `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 62 |         /// This assumes a reference box and computes insets accordingly.
 63 |         public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                   |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                   `- note: use 'rawValue' instead
 65 |
 66 |             let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 62 |         /// This assumes a reference box and computes insets accordingly.
 63 |         public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                                                    |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                    `- note: use 'rawValue' instead
 65 |
 66 |             let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:66:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 65 |
 66 |             let top = rectangle.lly._rawValue
    |                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                     `- note: use 'rawValue' instead
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:67:38: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 65 |
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
    |                                      |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                      `- note: use 'rawValue' instead
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
    |                                                           |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                           `- note: use 'rawValue' instead
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
 70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
 70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
    |                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                         `- note: use 'rawValue' instead
 70 |
 71 |             return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:85: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
    |                                                                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                     `- note: use 'rawValue' instead
 70 |
 71 |             return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 78 |         /// Example output: `"xywh(10px 20px 200px 100px)"`
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                   |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                   `- note: use 'rawValue' instead
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
 82 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 78 |         /// Example output: `"xywh(10px 20px 200px 100px)"`
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                                                    |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                    `- note: use 'rawValue' instead
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
 82 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:98: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                  |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                  `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:143: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                               `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:189: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                                                                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                                                             `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 |         /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
    |                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                     `- note: use 'rawValue' instead
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:71: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 |         /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
    |                                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                       `- note: use 'rawValue' instead
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                              `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:109: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                             `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:158: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                              `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:204: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                                                                                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                                                                            `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:42: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 |         public var clipPath: String {
130 |             let pointsStr = polygon.vertices.map { vertex in
131 |                 "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
    |                                          |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                          `- note: use 'rawValue' instead
132 |             }.joined(separator: ", ")
133 |             return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:80: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 |         public var clipPath: String {
130 |             let pointsStr = polygon.vertices.map { vertex in
131 |                 "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
    |                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                `- note: use 'rawValue' instead
132 |             }.joined(separator: ", ")
133 |             return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:60: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 |                     d += " M"
165 |                 }
166 |                 d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
    |                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                            `- note: use 'rawValue' instead
167 |
168 |                 // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:108: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 |                     d += " M"
165 |                 }
166 |                 d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
    |                                                                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                            `- note: use 'rawValue' instead
167 |
168 |                 // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 |                     switch segment {
171 |                     case .line(let seg):
172 |                         d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
    |                                                           |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                           `- note: use 'rawValue' instead
173 |
174 |                     case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 |                     switch segment {
171 |                     case .line(let seg):
172 |                         d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
173 |
174 |                     case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 |                         case 2: // Linear (should use line instead, but handle it)
178 |                             if let end = bez.controlPoints.last {
179 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
180 |                             }
181 |                         case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 |                         case 2: // Linear (should use line instead, but handle it)
178 |                             if let end = bez.controlPoints.last {
179 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
180 |                             }
181 |                         case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 |                                 let cp = bez.controlPoints[1]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
    |                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                              `- note: use 'rawValue' instead
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 |                                 let cp = bez.controlPoints[1]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
187 |                             }
188 |                         case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
187 |                             }
188 |                         case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 |                                 let cp2 = bez.controlPoints[2]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 |                                 let cp2 = bez.controlPoints[2]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
215 |                     }
216 |                 }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
215 |                     }
216 |                 }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[651/668] Compiling W3C_CSS_Shared CSSOM.swift
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:37:33: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 35 |         /// Example output: `"circle(50px at 100px 100px)"`
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
    |                                 |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                 `- note: use 'rawValue' instead
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
 39 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                         `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:105: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                         `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:150: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 36 |         public var clipPath: String? {
 37 |             guard circle.radius._rawValue >= 0 else { return nil }
 38 |             return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
    |                                                                                                                                                      |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                      `- note: use 'rawValue' instead
 39 |         }
 40 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 62 |         /// This assumes a reference box and computes insets accordingly.
 63 |         public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                   |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                   `- note: use 'rawValue' instead
 65 |
 66 |             let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 62 |         /// This assumes a reference box and computes insets accordingly.
 63 |         public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                                                    |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                    `- note: use 'rawValue' instead
 65 |
 66 |             let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:66:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 64 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 65 |
 66 |             let top = rectangle.lly._rawValue
    |                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                     `- note: use 'rawValue' instead
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:67:38: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 65 |
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
    |                                      |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                      `- note: use 'rawValue' instead
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
    |                                                           |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                           `- note: use 'rawValue' instead
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
 70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 66 |             let top = rectangle.lly._rawValue
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
 70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
    |                                                         |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                         `- note: use 'rawValue' instead
 70 |
 71 |             return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:85: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 67 |             let left = rectangle.llx._rawValue
 68 |             let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
 69 |             let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
    |                                                                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                     `- note: use 'rawValue' instead
 70 |
 71 |             return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 78 |         /// Example output: `"xywh(10px 20px 200px 100px)"`
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                   |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                   `- note: use 'rawValue' instead
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
 82 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 78 |         /// Example output: `"xywh(10px 20px 200px 100px)"`
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
    |                                                                    |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                    `- note: use 'rawValue' instead
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
 82 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:98: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                  |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                  `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:143: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                               `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:189: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
 79 |         public var xywh: String? {
 80 |             guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
 81 |             return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
    |                                                                                                                                                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                                                             `- note: use 'rawValue' instead
 82 |         }
 83 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 |         /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
    |                                     |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                     `- note: use 'rawValue' instead
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:71: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 |         /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
    |                                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                       `- note: use 'rawValue' instead
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 |         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                              `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:109: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                             `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:158: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                              `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:204: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 |         public var clipPath: String? {
106 |             guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 |             return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
    |                                                                                                                                                                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                                                                                                                            `- note: use 'rawValue' instead
108 |         }
109 |     }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:42: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 |         public var clipPath: String {
130 |             let pointsStr = polygon.vertices.map { vertex in
131 |                 "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
    |                                          |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                          `- note: use 'rawValue' instead
132 |             }.joined(separator: ", ")
133 |             return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:80: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 |         public var clipPath: String {
130 |             let pointsStr = polygon.vertices.map { vertex in
131 |                 "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
    |                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                `- note: use 'rawValue' instead
132 |             }.joined(separator: ", ")
133 |             return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:60: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 |                     d += " M"
165 |                 }
166 |                 d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
    |                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                            `- note: use 'rawValue' instead
167 |
168 |                 // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:108: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 |                     d += " M"
165 |                 }
166 |                 d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
    |                                                                                                            |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                            `- note: use 'rawValue' instead
167 |
168 |                 // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 |                     switch segment {
171 |                     case .line(let seg):
172 |                         d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
    |                                                           |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                           `- note: use 'rawValue' instead
173 |
174 |                     case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 |                     switch segment {
171 |                     case .line(let seg):
172 |                         d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
173 |
174 |                     case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 |                         case 2: // Linear (should use line instead, but handle it)
178 |                             if let end = bez.controlPoints.last {
179 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
180 |                             }
181 |                         case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 |                         case 2: // Linear (should use line instead, but handle it)
178 |                             if let end = bez.controlPoints.last {
179 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
180 |                             }
181 |                         case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 |                                 let cp = bez.controlPoints[1]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
    |                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                              `- note: use 'rawValue' instead
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 |                                 let cp = bez.controlPoints[1]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
187 |                             }
188 |                         case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 |                                 let end = bez.controlPoints[2]
185 |                                 d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
187 |                             }
188 |                         case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 |                                 let cp2 = bez.controlPoints[2]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 |                                 let cp2 = bez.controlPoints[2]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 |                                 let end = bez.controlPoints[3]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 |                             }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                             |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                             `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 |                                 d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 |                                 d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 |                                 d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                              |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                              `- note: use 'rawValue' instead
196 |                             }
197 |                         default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                               |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                               `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 |                             // For now, just draw to end point
200 |                             if let end = bez.controlPoints.last {
201 |                                 d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                                |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                                `- note: use 'rawValue' instead
202 |                             }
203 |                         }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 |                         // (Full arc support would require SVG arc command conversion)
208 |                         let end = arc.endPoint
209 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
210 |
211 |                     case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                       |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                       `- note: use 'rawValue' instead
215 |                     }
216 |                 }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 |                         // Approximate with line to endpoint
213 |                         let end = arc.endPoint
214 |                         d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
    |                                                                                        |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
    |                                                                                        `- note: use 'rawValue' instead
215 |                     }
216 |                 }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[653/706] Compiling W3C_CSS_Variables exports.swift
[654/706] Emitting module W3C_CSS_Variables
[655/746] Compiling W3C_CSS_Conditional exports.swift
[656/746] Emitting module W3C_CSS_Conditional
[657/751] Emitting module W3C_CSS_PseudoElements
[660/754] Compiling W3C_CSS_PseudoClasses CSSPseudoClass.swift
[661/754] Compiling W3C_CSS_PseudoClasses Active.swift
[662/754] Compiling W3C_CSS_PseudoClasses AnyLink.swift
[663/758] Compiling W3C_CSS_PseudoClasses Focus.swift
[664/758] Compiling W3C_CSS_PseudoClasses FocusVisible.swift
[665/758] Compiling W3C_CSS_PseudoClasses FocusWithin.swift
[666/758] Compiling W3C_CSS_PseudoClasses Has.swift
[667/758] Compiling W3C_CSS_PseudoClasses Hover.swift
[668/758] Compiling W3C_CSS_PseudoClasses InRange.swift
[669/758] Compiling W3C_CSS_Selectors Universal.swift
[670/758] Compiling W3C_CSS_PseudoClasses Dir.swift
[671/758] Compiling W3C_CSS_PseudoClasses Disabled.swift
[672/758] Compiling W3C_CSS_PseudoClasses Empty.swift
[673/758] Compiling W3C_CSS_PseudoClasses NthChild.swift
[674/758] Compiling W3C_CSS_PseudoClasses NthLastChild.swift
[675/758] Compiling W3C_CSS_PseudoClasses NthLastOfType.swift
[676/758] Emitting module W3C_CSS_WritingModes
[677/758] Compiling W3C_CSS_WritingModes Direction.swift
[678/758] Compiling W3C_CSS_WritingModes WritingMode.swift
[680/759] Emitting module W3C_CSS_Selectors
[683/759] Compiling W3C_CSS_PseudoClasses Checked.swift
[684/759] Compiling W3C_CSS_PseudoClasses Default.swift
[687/759] Compiling W3C_CSS_PseudoClasses Blank.swift
[690/759] Compiling W3C_CSS_PseudoClasses Link.swift
[691/759] Compiling W3C_CSS_PseudoClasses LocalLink.swift
[692/759] Compiling W3C_CSS_PseudoClasses Not.swift
[693/759] Compiling W3C_CSS_Selectors Type.swift
[694/759] Compiling W3C_CSS_Selectors ID.swift
[695/759] Compiling W3C_CSS_Selectors Combinators.swift
[696/759] Compiling W3C_CSS_Selectors Class.swift
[697/759] Compiling W3C_CSS_PseudoElements spelling-error.swift
[698/759] Compiling W3C_CSS_PseudoElements target-text.swift
[699/759] Compiling W3C_CSS_PseudoElements webkit-input-placeholder.swift
[700/760] Compiling W3C_CSS_PseudoClasses ReadOnly.swift
[701/760] Compiling W3C_CSS_PseudoClasses ReadWrite.swift
[702/760] Compiling W3C_CSS_PseudoClasses Required.swift
[703/760] Compiling W3C_CSS_PseudoClasses Root.swift
[704/760] Compiling W3C_CSS_PseudoClasses Scope.swift
[705/760] Compiling W3C_CSS_PseudoClasses Target.swift
[706/760] Emitting module W3C_CSS_PseudoClasses
[720/760] Compiling W3C_CSS_Selectors & nesting.swift
[721/760] Compiling W3C_CSS_Selectors Attribute.swift
[722/760] Compiling W3C_CSS_PseudoClasses NthOfType.swift
[723/760] Compiling W3C_CSS_PseudoClasses OnlyChild.swift
[724/760] Compiling W3C_CSS_PseudoClasses OnlyOfType.swift
[725/760] Compiling W3C_CSS_PseudoClasses Optional.swift
[726/760] Compiling W3C_CSS_PseudoClasses OutOfRange.swift
[727/760] Compiling W3C_CSS_PseudoClasses PlaceholderShown.swift
[728/760] Compiling W3C_CSS_PseudoClasses Indeterminate.swift
[729/760] Compiling W3C_CSS_PseudoClasses Invalid.swift
[730/760] Compiling W3C_CSS_PseudoClasses Is.swift
[731/760] Compiling W3C_CSS_PseudoClasses Lang.swift
[732/760] Compiling W3C_CSS_PseudoClasses LastChild.swift
[733/760] Compiling W3C_CSS_PseudoClasses LastOfType.swift
[747/761] Compiling W3C_CSS_Compositing MixBlendMode.swift
[748/761] Compiling W3C_CSS_Compositing Isolation.swift
[749/766] Emitting module W3C_CSS_Compositing
[750/766] Compiling W3C_CSS_Compositing BlendMode.swift
[751/767] Emitting module RFC_4648
[764/769] Compiling W3C_CSS_PseudoClasses TargetWithin.swift
[765/769] Compiling W3C_CSS_PseudoClasses Valid.swift
[766/769] Compiling W3C_CSS_PseudoClasses Visited.swift
[767/769] Compiling W3C_CSS_PseudoClasses Where.swift
[768/769] Compiling W3C_CSS_PseudoClasses Pseudo-classes.swift
[771/805] Compiling W3C_CSS_Values FilterFunction.swift
[772/805] Compiling W3C_CSS_Values Flex.swift
[773/805] Compiling W3C_CSS_Values Frequency.swift
[774/805] Compiling W3C_CSS_Values FrequencyPercentage.swift
[775/805] Compiling W3C_CSS_Values Functions.swift
[776/809] Compiling W3C_CSS_Values AlphaValue.swift
[777/809] Compiling W3C_CSS_Values Angle.swift
[778/809] Compiling W3C_CSS_Values AngleConvertible.swift
[779/809] Compiling W3C_CSS_Values AnglePercentage.swift
[780/809] Compiling W3C_CSS_Values BasicShape.swift
[781/809] Compiling W3C_CSS_Values CalcKeyword.swift
[782/809] Compiling W3C_CSS_Values CalcSum.swift
[783/809] Compiling W3C_CSS_Values Color.swift
[784/809] Compiling W3C_CSS_Values ColorInterpolationMethod.swift
[785/809] Compiling W3C_CSS_Values Dimension.swift
[786/809] Compiling W3C_CSS_Values PercentageConvertible.swift
[787/809] Compiling W3C_CSS_Values Position.swift
[788/809] Compiling W3C_CSS_Values Ratio.swift
[789/809] Compiling W3C_CSS_Values Resolution.swift
[790/809] Emitting module W3C_CSS_Values
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[791/809] Compiling W3C_CSS_Values LengthPercentage.swift
[792/809] Compiling W3C_CSS_Values LengthPercentageConvertible.swift
[793/809] Compiling W3C_CSS_Values LineStyle.swift
[794/809] Compiling W3C_CSS_Values LineStyleConvertible.swift
[795/809] Compiling W3C_CSS_Values NamedColor+sRGB.swift
[796/809] Compiling W3C_CSS_Values HexColor.swift
[797/809] Compiling W3C_CSS_Values Hue.swift
[798/809] Compiling W3C_CSS_Values Integer.swift
[799/809] Compiling W3C_CSS_Values Length.swift
[800/809] Compiling W3C_CSS_Values LengthConvertible.swift
[801/809] Compiling W3C_CSS_Values NamedColor.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[802/809] Compiling W3C_CSS_Values Number.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[803/809] Compiling W3C_CSS_Values NumberConvertible.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[804/809] Compiling W3C_CSS_Values NumberPercentage.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[805/809] Compiling W3C_CSS_Values Percentage.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 42 |     public static let full = Percentage(100)
 43 |
 44 |     subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
    |     `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
 45 |         value[keyPath: keyPath]
 46 |     }
[806/809] Compiling W3C_CSS_Values Size.swift
[807/809] Compiling W3C_CSS_Values SystemColor.swift
[808/809] Compiling W3C_CSS_Values Time.swift
[809/809] Compiling W3C_CSS_Values TimePercentage.swift
[811/909] Compiling W3C_CSS_Syntax UnicodeRange Property.swift
[812/909] Emitting module W3C_CSS_Easing
[813/909] Compiling W3C_CSS_Easing EasingFunction.swift
[814/909] Compiling W3C_CSS_Display DisplayBox.swift
[815/909] Compiling W3C_CSS_Display DisplayInside.swift
[816/909] Compiling W3C_CSS_Display DisplayOutside.swift
[817/909] Compiling W3C_CSS_Display DisplayListitem.swift
[818/909] Compiling W3C_CSS_Display DisplayLegacy.swift
[819/909] Compiling W3C_CSS_Display DisplayInternal.swift
[820/909] Emitting module W3C_CSS_Display
[821/909] Compiling W3C_CSS_Syntax AtRule.swift
[822/909] Compiling W3C_CSS_Transforms TransformStyle.swift
[823/910] Emitting module W3C_CSS_Logical
[824/910] Compiling W3C_CSS_Logical InlineSize.swift
[825/910] Compiling W3C_CSS_Logical MaxBlockSize.swift
[826/910] Compiling W3C_CSS_Logical BlockSize.swift
[827/910] Emitting module W3C_CSS_Syntax
[828/910] Compiling W3C_CSS_Logical MaxInlineSize.swift
[829/910] Compiling W3C_CSS_Display Display.swift
[830/911] Compiling W3C_CSS_Logical MinInlineSize.swift
[831/911] Compiling W3C_CSS_Logical MinBlockSize.swift
[834/913] Compiling W3C_CSS_Alignment PlaceSelf.swift
[835/914] Compiling W3C_CSS_BoxModel MarginBlockEnd.swift
[836/914] Compiling W3C_CSS_BoxModel MarginBlockStart.swift
[838/914] Compiling W3C_CSS_Syntax Scope.swift
[839/914] Compiling W3C_CSS_Alignment PlaceItems.swift
[840/914] Compiling W3C_CSS_Alignment AlignSelf.swift
[841/914] Compiling W3C_CSS_Alignment AlignmentBaseline.swift
[842/914] Emitting module W3C_CSS_Transforms
[843/914] Compiling W3C_CSS_Alignment JustifySelf.swift
[844/914] Compiling W3C_CSS_Alignment PlaceContent.swift
[845/914] Compiling W3C_CSS_Syntax Namespace.swift
[846/914] Compiling W3C_CSS_Syntax Property.swift
[847/914] Compiling W3C_CSS_Alignment JustifyContent.swift
[848/914] Compiling W3C_CSS_Alignment JustifyItems.swift
[849/915] Compiling W3C_CSS_Transforms TransformOrigin.swift
[850/915] Compiling W3C_CSS_Syntax CharSet.swift
[851/915] Compiling W3C_CSS_Syntax Import.swift
[853/916] Compiling W3C_CSS_Transforms Transform.swift
[855/916] Compiling W3C_CSS_BoxModel BoxSizing.swift
[856/916] Compiling W3C_CSS_BoxModel Height.swift
[857/916] Emitting module W3C_CSS_Alignment
[861/916] Compiling W3C_CSS_BoxModel MarginLeft.swift
[862/916] Compiling W3C_CSS_BoxModel MarginRight.swift
[871/916] Compiling W3C_CSS_BoxModel MarginTop.swift
[872/916] Compiling W3C_CSS_BoxModel MarginTrim.swift
[873/916] Compiling W3C_CSS_Transforms Translate.swift
[874/916] Compiling W3C_CSS_Transforms TransformBox.swift
[875/916] Compiling W3C_CSS_Transforms TransformFunction.swift
[876/920] Compiling W3C_CSS_Alignment VerticalAlign.swift
[879/953] Compiling W3C_CSS_BoxModel PaddingBlockStart.swift
[880/953] Compiling W3C_CSS_BoxModel PaddingBottom.swift
[881/953] Compiling W3C_CSS_BoxModel PaddingInline.swift
[882/953] Compiling W3C_CSS_BoxModel PaddingInlineEnd.swift
[883/953] Compiling W3C_CSS_BoxModel PaddingInlineStart.swift
[884/953] Compiling W3C_CSS_BoxModel OverflowX.swift
[885/953] Compiling W3C_CSS_BoxModel OverflowY.swift
[886/953] Compiling W3C_CSS_BoxModel Padding.swift
[887/953] Compiling W3C_CSS_BoxModel PaddingBlock.swift
[888/953] Compiling W3C_CSS_BoxModel PaddingBlockEnd.swift
[889/957] Compiling W3C_CSS_Positioning InsetInline.swift
[890/957] Compiling W3C_CSS_Positioning InsetInlineEnd.swift
[891/957] Compiling W3C_CSS_Positioning InsetInlineStart.swift
[892/957] Compiling W3C_CSS_Positioning Left.swift
[893/957] Compiling W3C_CSS_Positioning Float.swift
[894/957] Emitting module W3C_CSS_BoxModel
[895/957] Compiling W3C_CSS_Positioning AnchorName.swift
[896/957] Compiling W3C_CSS_Positioning Bottom.swift
[897/957] Compiling W3C_CSS_Positioning Clear.swift
[898/957] Compiling W3C_CSS_Positioning InsetBlockEnd.swift
[899/957] Compiling W3C_CSS_Positioning InsetBlockStart.swift
[900/957] Compiling W3C_CSS_Positioning Right.swift
[901/957] Compiling W3C_CSS_BoxModel OverflowClipMargin.swift
[902/957] Compiling W3C_CSS_BoxModel OverflowInline.swift
[903/957] Compiling W3C_CSS_BoxModel OverflowType.swift
[904/957] Compiling W3C_CSS_BoxModel OverflowWrap.swift
[905/957] Compiling W3C_CSS_Positioning Overlay.swift
[906/957] Compiling W3C_CSS_Positioning Position.swift
[907/957] Compiling W3C_CSS_Positioning PositionAnchor.swift
[908/957] Compiling W3C_CSS_Positioning PositionTryOrder.swift
[909/957] Compiling W3C_CSS_Positioning PositionVisibility.swift
[910/957] Compiling W3C_CSS_Positioning Inset.swift
[911/957] Compiling W3C_CSS_Positioning InsetBlock.swift
[912/957] Compiling W3C_CSS_Positioning PositionArea.swift
[913/957] Compiling W3C_CSS_Positioning PositionTry.swift
[914/957] Compiling W3C_CSS_Positioning PositionTryFallbacks.swift
[915/981] Compiling W3C_CSS_Grid GridTemplateRows.swift
[916/981] Emitting module W3C_CSS_Grid
[917/981] Compiling W3C_CSS_Flexbox Flex.swift
[918/981] Compiling W3C_CSS_Flexbox FlexBasis.swift
[920/982] Compiling W3C_CSS_Paged PageBreakAfter.swift
[921/982] Compiling W3C_CSS_Paged PageBreakBefore.swift
[922/982] Compiling W3C_CSS_Paged PageBreakInside.swift
[923/982] Compiling W3C_CSS_Paged Widows.swift
[924/982] Emitting module W3C_CSS_MediaQueries
[925/985] Compiling W3C_CSS_Paged PageBreak.swift
[926/985] Compiling W3C_CSS_Flexbox FlexWrap.swift
[927/986] Compiling W3C_CSS_Color ColorProfile.swift
[928/986] Compiling W3C_CSS_Color ColorScheme.swift
[929/986] Compiling W3C_CSS_Color ColorValidation.swift
[930/989] Emitting module W3C_CSS_Flexbox
[931/989] Compiling W3C_CSS_Paged Orphans.swift
[935/989] Emitting module W3C_CSS_Paged
[936/989] Compiling W3C_CSS_Paged Page.swift
[937/990] Compiling W3C_CSS_Color ColorInterpolation.swift
[938/990] Compiling W3C_CSS_Color ColorInterpolationFilters.swift
[939/991] Compiling W3C_CSS_Flexbox Order.swift
[941/991] Compiling W3C_CSS_Flexbox FlexGrow.swift
[942/991] Compiling W3C_CSS_Flexbox FlexDirection.swift
[943/991] Compiling W3C_CSS_Flexbox FlexFlow.swift
[954/991] Compiling W3C_CSS_Color Opacity.swift
[955/991] Compiling W3C_CSS_Flexbox FlexShrink.swift
[956/991] Compiling W3C_CSS_Flexbox Gap.swift
[957/991] Compiling W3C_CSS_Color FloodOpacity.swift
[958/991] Compiling W3C_CSS_Color LightingColor.swift
[960/991] Compiling W3C_CSS_Color FloodColor.swift
[961/991] Emitting module W3C_CSS_Color
[962/991] Emitting module W3C_CSS_Positioning
[965/991] Compiling W3C_CSS_BoxModel PaddingLeft.swift
[966/991] Compiling W3C_CSS_BoxModel PaddingRight.swift
[967/991] Compiling W3C_CSS_BoxModel PaddingTop.swift
[968/991] Compiling W3C_CSS_BoxModel Width.swift
[970/992] Compiling W3C_CSS_Color SystemColor.swift
[971/992] Emitting module W3C_CSS_CounterStyles
[972/992] Compiling W3C_CSS_CounterStyles CounterStyle.swift
[975/992] Compiling W3C_CSS_MediaQueries Import+Media.swift
[976/992] Compiling W3C_CSS_MediaQueries Media.swift
[977/993] Compiling W3C_CSS_Flexbox RowGap.swift
[981/996] Emitting module W3C_CSS_Cascade
[982/996] Compiling W3C_CSS_Cascade Layer.swift
[983/996] Compiling W3C_CSS_Cascade Supports.swift
[984/996] Compiling W3C_CSS_Positioning Top.swift
[985/996] Compiling W3C_CSS_Positioning ZIndex.swift
[986/996] Compiling W3C_CSS_Positioning Zoom.swift
[989/1125] Compiling W3C_CSS_Images ImageOrientation.swift
[990/1125] Compiling W3C_CSS_Images ImageResolution.swift
[991/1125] Compiling W3C_CSS_Images Marker.swift
[992/1125] Compiling W3C_CSS_Images DominantBaseline.swift
[993/1125] Compiling W3C_CSS_Images MarkerMid.swift
[994/1125] Compiling W3C_CSS_Images MarkerStart.swift
[995/1125] Compiling W3C_CSS_Images PaintOrder.swift
[996/1125] Compiling W3C_CSS_Images R.swift
[997/1125] Compiling W3C_CSS_Images Image.swift
[999/1129] Compiling W3C_CSS_TextDecoration TextDecorationSkipInk.swift
[1000/1129] Compiling W3C_CSS_Transitions TransitionTimingFunction.swift
[1001/1130] Compiling W3C_CSS_TextDecoration TextDecorationSkip.swift
[1002/1130] Compiling W3C_CSS_TextDecoration TextDecorationLine.swift
[1003/1130] Compiling W3C_CSS_Images StrokeLinecap.swift
[1004/1130] Compiling W3C_CSS_Images StrokeLinejoin.swift
[1005/1130] Compiling W3C_CSS_Images StrokeMiterlimit.swift
[1006/1130] Compiling W3C_CSS_Images StrokeOpacity.swift
[1007/1130] Compiling W3C_CSS_TextDecoration TextDecorationColor.swift
[1008/1134] Compiling W3C_CSS_Filters Filter.swift
[1009/1134] Emitting module W3C_CSS_Transitions
[1010/1134] Compiling W3C_CSS_Transitions ViewTransition.swift
[1011/1134] Compiling W3C_CSS_Transitions Transition.swift
[1012/1134] Compiling W3C_CSS_TextDecoration TextDecorationStyle.swift
[1013/1134] Compiling W3C_CSS_Transitions TransitionDuration.swift
[1014/1134] Compiling W3C_CSS_Transitions TransitionProperty.swift
[1015/1134] Compiling W3C_CSS_TextDecoration TextDecorationThickness.swift
[1016/1134] Compiling W3C_CSS_Filters BackdropFilter.swift
[1017/1134] Emitting module W3C_CSS_Filters
[1018/1134] Compiling W3C_CSS_Transitions StartingStyle.swift
[1019/1134] Compiling W3C_CSS_Transitions TransitionBehavior.swift
[1020/1134] Compiling W3C_CSS_Transitions TransitionDelay.swift
[1021/1135] Compiling W3C_CSS_Images StrokeWidth.swift
[1022/1135] Compiling W3C_CSS_Images VectorEffect.swift
[1023/1135] Compiling W3C_CSS_Images X.swift
[1024/1135] Compiling W3C_CSS_Images Y.swift
[1025/1136] Compiling W3C_CSS_Images StopOpacity.swift
[1026/1136] Compiling W3C_CSS_Images Stroke.swift
[1027/1136] Compiling W3C_CSS_Images StrokeDasharray.swift
[1028/1136] Compiling W3C_CSS_Images StrokeDashoffset.swift
[1029/1136] Compiling W3C_CSS_Images Rx.swift
[1030/1136] Compiling W3C_CSS_Images Ry.swift
[1031/1136] Compiling W3C_CSS_Images ShapeRendering.swift
[1032/1136] Compiling W3C_CSS_Images StopColor.swift
[1034/1136] Emitting module W3C_CSS_TextDecoration
[1035/1136] Compiling W3C_CSS_TextDecoration TextDecoration.swift
[1037/1136] Compiling W3C_CSS_Images Fill.swift
[1038/1136] Compiling W3C_CSS_Images FillOpacity.swift
[1039/1136] Compiling W3C_CSS_Images FillRule.swift
[1040/1136] Compiling W3C_CSS_Images FilterFunction.swift
[1041/1136] Compiling W3C_CSS_Images Gradient.swift
[1046/1141] Compiling W3C_CSS_Images Cx.swift
[1047/1141] Compiling W3C_CSS_Images Cy.swift
[1048/1141] Compiling W3C_CSS_Images D.swift
[1049/1141] Compiling W3C_CSS_Images DashedIdent.swift
[1061/1141] Compiling W3C_CSS_Images MarkerEnd.swift
[1063/1147] Emitting module W3C_CSS_Scroll
[1068/1147] Emitting module W3C_CSS_Images
[1090/1147] Compiling W3C_CSS_Scroll ScrollTimelineName.swift
[1091/1147] Compiling W3C_CSS_Scroll ScrollbarColor.swift
[1092/1147] Compiling W3C_CSS_Scroll ScrollbarGutter.swift
[1093/1147] Compiling W3C_CSS_Scroll ScrollbarWidth.swift
[1094/1147] Compiling W3C_CSS_Text TextUnderlinePosition.swift
[1095/1147] Compiling W3C_CSS_Text TextWrap.swift
[1103/1147] Compiling W3C_CSS_Text TextEmphasis.swift
[1104/1147] Compiling W3C_CSS_Text TextEmphasisColor.swift
[1105/1147] Compiling W3C_CSS_Text TextEmphasisPosition.swift
[1106/1147] Compiling W3C_CSS_Text TextEmphasisStyle.swift
[1107/1147] Compiling W3C_CSS_Text TextIndent.swift
[1108/1147] Compiling W3C_CSS_Text TextJustify.swift
[1115/1147] Emitting module W3C_CSS_Text
[1128/1147] Compiling W3C_CSS_Text TextWrapMode.swift
[1129/1147] Compiling W3C_CSS_Text TextWrapStyle.swift
[1130/1147] Compiling W3C_CSS_Text WhiteSpace.swift
[1131/1147] Compiling W3C_CSS_Text WhiteSpaceCollapse.swift
[1132/1147] Compiling W3C_CSS_Text WordBreak.swift
[1133/1147] Compiling W3C_CSS_Text WordSpacing.swift
[1140/1179] Compiling W3C_CSS_Fonts FontSynthesisPosition.swift
[1141/1179] Compiling W3C_CSS_Fonts FontSynthesisSmallCaps.swift
[1142/1179] Compiling W3C_CSS_Fonts FontSynthesisStyle.swift
[1143/1179] Compiling W3C_CSS_Fonts FontSynthesisWeight.swift
[1144/1179] Compiling W3C_CSS_Fonts FontSmooth.swift
[1145/1179] Compiling W3C_CSS_Fonts AbsoluteSize.swift
[1146/1179] Compiling W3C_CSS_Fonts Font.swift
[1147/1179] Compiling W3C_CSS_Fonts FontFace.swift
[1148/1179] Compiling W3C_CSS_Fonts FontFamily.swift
[1149/1179] Compiling W3C_CSS_Fonts FontFeatureSettings.swift
[1151/1207] Compiling W3C_CSS_Masking MaskClip.swift
[1152/1207] Compiling W3C_CSS_Masking MaskBorderOutset.swift
[1153/1208] Compiling W3C_CSS_Masking MaskBorderRepeat.swift
[1154/1208] Compiling W3C_CSS_Masking MaskBorderSlice.swift
[1155/1210] Emitting module W3C_CSS_Fonts
[1156/1280] Compiling W3C_CSS_Lists ListStyleType.swift
[1157/1280] Compiling W3C_CSS_Lists CounterSet.swift
[1158/1280] Compiling W3C_CSS_Backgrounds BackgroundPositionY.swift
[1159/1280] Compiling W3C_CSS_Backgrounds BorderBottomStyle.swift
[1160/1280] Compiling W3C_CSS_Backgrounds BorderBottomWidth.swift
[1161/1280] Compiling W3C_CSS_Backgrounds BorderCollapse.swift
[1162/1280] Compiling W3C_CSS_Lists ListStylePosition.swift
[1163/1280] Emitting module W3C_CSS_Lists
[1164/1280] Compiling W3C_CSS_Lists CounterIncrement.swift
[1165/1280] Compiling W3C_CSS_Backgrounds BorderEndStartRadius.swift
[1166/1280] Compiling W3C_CSS_Backgrounds BorderImage.swift
[1167/1280] Compiling W3C_CSS_Backgrounds BorderImageOutset.swift
[1168/1283] Compiling W3C_CSS_Lists CounterReset.swift
[1169/1283] Compiling W3C_CSS_Lists ListStyle.swift
[1170/1283] Compiling W3C_CSS_Lists ListStyleImage.swift
[1172/1284] Compiling W3C_CSS_Backgrounds BorderColor.swift
[1173/1284] Compiling W3C_CSS_Backgrounds BorderEndEndRadius.swift
[1177/1284] Compiling W3C_CSS_Backgrounds BorderImageRepeat.swift
[1178/1284] Compiling W3C_CSS_Backgrounds BorderInlineStart.swift
[1179/1284] Compiling W3C_CSS_Backgrounds BorderInlineStartColor.swift
[1180/1284] Emitting module W3C_CSS_Masking
[1181/1284] Compiling W3C_CSS_Backgrounds BorderLeft.swift
[1182/1284] Compiling W3C_CSS_Backgrounds BorderLeftColor.swift
[1183/1284] Compiling W3C_CSS_Backgrounds BorderLeftStyle.swift
[1184/1284] Compiling W3C_CSS_Backgrounds BorderBlockStartColor.swift
[1185/1284] Compiling W3C_CSS_Masking ShapeImageThreshold.swift
[1186/1284] Compiling W3C_CSS_Masking ShapeMargin.swift
[1187/1284] Compiling W3C_CSS_Masking ShapeOutside.swift
[1188/1284] Compiling W3C_CSS_Backgrounds BorderInlineWidth.swift
[1192/1295] Compiling W3C_CSS_Backgrounds BorderBlockStartStyle.swift
[1193/1295] Compiling W3C_CSS_Backgrounds BorderBlockStartWidth.swift
[1194/1295] Compiling W3C_CSS_Backgrounds BorderBlockStyle.swift
[1195/1295] Compiling W3C_CSS_Backgrounds BorderBlockWidth.swift
[1199/1295] Compiling W3C_CSS_Backgrounds BackgroundOrigin.swift
[1200/1295] Compiling W3C_CSS_Backgrounds BackgroundPosition.swift
[1201/1295] Compiling W3C_CSS_Backgrounds BackgroundPositionX.swift
[1202/1295] Emitting module W3C_CSS_Backgrounds
[1203/1304] Compiling W3C_CSS_Containment ContainIntrinsicInlineSize.swift
[1204/1304] Compiling W3C_CSS_Containment ContainIntrinsicSize.swift
[1205/1304] Compiling W3C_CSS_Containment ContainIntrinsicWidth.swift
[1206/1304] Compiling W3C_CSS_Containment ContainerName.swift
[1207/1305] Emitting module W3C_CSS_Containment
[1208/1305] Compiling W3C_CSS_Containment ContainIntrinsicHeight.swift
[1210/1305] Compiling W3C_CSS_Containment Contain.swift
[1211/1305] Compiling W3C_CSS_Containment ContainIntrinsicBlockSize.swift
[1220/1305] Compiling W3C_CSS_Backgrounds BorderBottom.swift
[1221/1305] Compiling W3C_CSS_Backgrounds BorderBottomColor.swift
[1222/1305] Compiling W3C_CSS_Backgrounds BorderBottomLeftRadius.swift
[1223/1305] Compiling W3C_CSS_Backgrounds BorderBottomRightRadius.swift
[1224/1305] Compiling W3C_CSS_Containment ContainerType.swift
[1225/1305] Compiling W3C_CSS_Containment Content.swift
[1235/1306] Compiling W3C_CSS_Containment ContentVisibility.swift
[1236/1308] Compiling W3C_CSS_Containment Container.swift
[1240/1309] Compiling W3C_CSS_Typography exports.swift
[1241/1309] Emitting module W3C_CSS_Typography
[1242/1309] Compiling W3C_CSS_Backgrounds BorderLeftWidth.swift
[1243/1309] Compiling W3C_CSS_Backgrounds BorderRadius.swift
[1244/1309] Compiling W3C_CSS_Backgrounds BorderRight.swift
[1245/1309] Compiling W3C_CSS_Backgrounds BorderRightColor.swift
[1246/1309] Compiling W3C_CSS_Backgrounds BorderRightStyle.swift
[1247/1309] Compiling W3C_CSS_Backgrounds BorderRightWidth.swift
[1248/1309] Compiling W3C_CSS_Backgrounds BorderSpacing.swift
[1249/1309] Compiling W3C_CSS_Backgrounds BorderStartEndRadius.swift
[1250/1309] Compiling W3C_CSS_Backgrounds BorderStartStartRadius.swift
[1260/1309] Compiling W3C_CSS_Backgrounds BorderImageSlice.swift
[1261/1309] Compiling W3C_CSS_Backgrounds BorderImageSource.swift
[1262/1309] Compiling W3C_CSS_Backgrounds BorderImageWidth.swift
[1263/1309] Compiling W3C_CSS_Backgrounds BorderInline.swift
[1264/1309] Compiling W3C_CSS_Backgrounds BorderInlineColor.swift
[1265/1309] Compiling W3C_CSS_Backgrounds BorderInlineEnd.swift
[1266/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndColor.swift
[1267/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndStyle.swift
[1268/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndWidth.swift
[1280/1310] Compiling W3C_CSS_Backgrounds BackgroundRepeat.swift
[1281/1310] Compiling W3C_CSS_Backgrounds BackgroundSize.swift
[1282/1310] Compiling W3C_CSS_Backgrounds Border.swift
[1283/1310] Compiling W3C_CSS_Backgrounds BorderBlock.swift
[1284/1310] Compiling W3C_CSS_Backgrounds BorderBlockColor.swift
[1285/1310] Compiling W3C_CSS_Backgrounds BorderBlockEnd.swift
[1286/1310] Compiling W3C_CSS_Backgrounds BorderBlockEndColor.swift
[1287/1310] Compiling W3C_CSS_Backgrounds BorderBlockEndStyle.swift
[1288/1310] Compiling W3C_CSS_Backgrounds BorderBlockEndWidth.swift
[1289/1310] Compiling W3C_CSS_Backgrounds BorderBlockStart.swift
[1302/1311] Compiling W3C_CSS_Backgrounds BorderStyle.swift
[1303/1311] Compiling W3C_CSS_Backgrounds BorderTop.swift
[1304/1311] Compiling W3C_CSS_Backgrounds BorderTopColor.swift
[1305/1311] Compiling W3C_CSS_Backgrounds BorderTopLeftRadius.swift
[1306/1311] Compiling W3C_CSS_Backgrounds BorderTopRightRadius.swift
[1307/1311] Compiling W3C_CSS_Backgrounds BorderTopStyle.swift
[1308/1311] Compiling W3C_CSS_Backgrounds BorderTopWidth.swift
[1309/1311] Compiling W3C_CSS_Backgrounds BorderWidth.swift
[1310/1311] Compiling W3C_CSS_Backgrounds BoxShadow.swift
[1313/1397] Compiling W3C_CSS_Visual exports.swift
[1314/1397] Compiling W3C_CSS_UI AccentColor.swift
[1315/1397] Compiling W3C_CSS_UI CaptionSide.swift
[1316/1397] Compiling W3C_CSS_UI CaretColor.swift
[1317/1397] Compiling W3C_CSS_UI Cursor.swift
[1320/1401] Compiling W3C_CSS_Visual AspectRatio.swift
[1321/1401] Emitting module W3C_CSS_Visual
[1322/1401] Compiling W3C_CSS_Visual ImageRendering.swift
[1323/1401] Compiling W3C_CSS_Visual Visibility.swift
[1324/1401] Compiling W3C_CSS_Visual WillChange.swift
[1325/1401] Compiling W3C_CSS_Visual ObjectFit.swift
[1326/1401] Compiling W3C_CSS_Visual ObjectPosition.swift
[1327/1402] Emitting module W3C_CSS_Animations
[1328/1402] Compiling W3C_CSS_Multicolumn ColumnSpan.swift
[1329/1402] Compiling W3C_CSS_Multicolumn ColumnWidth.swift
[1331/1402] Compiling W3C_CSS_UI OutlineStyle.swift
[1332/1402] Compiling W3C_CSS_UI OutlineWidth.swift
[1333/1402] Compiling W3C_CSS_UI PointerEvents.swift
[1334/1402] Compiling W3C_CSS_UI PrintColorAdjust.swift
[1335/1402] Compiling W3C_CSS_UI Resize.swift
[1336/1402] Compiling W3C_CSS_UI SpeakAs.swift
[1337/1402] Compiling W3C_CSS_UI InterpolateSize.swift
[1338/1402] Compiling W3C_CSS_UI MozFloatEdge.swift
[1339/1402] Compiling W3C_CSS_UI MozOrient.swift
[1340/1402] Compiling W3C_CSS_UI MozUserFocus.swift
[1341/1402] Compiling W3C_CSS_UI MozUserInput.swift
[1342/1402] Compiling W3C_CSS_UI Outline.swift
[1343/1402] Compiling W3C_CSS_UI OutlineColor.swift
[1344/1402] Compiling W3C_CSS_UI OutlineOffset.swift
[1345/1402] Compiling W3C_CSS_UI EmptyCells.swift
[1346/1402] Compiling W3C_CSS_UI FieldSizing.swift
[1347/1402] Compiling W3C_CSS_UI ForcedColorAdjust.swift
[1348/1402] Compiling W3C_CSS_UI ImeMode.swift
[1349/1402] Emitting module W3C_CSS_Multicolumn
[1356/1407] Compiling W3C_CSS_UI MozForceBrokenImageIcon.swift
[1357/1407] Compiling W3C_CSS_UI MozImageRegion.swift
[1362/1407] Compiling W3C_CSS_Animations ViewTimelineInset.swift
[1363/1407] Compiling W3C_CSS_Animations ViewTimelineName.swift
[1364/1407] Compiling W3C_CSS_Animations ViewTransitionName.swift
[1371/1407] Compiling W3C_CSS_Multicolumn Columns.swift
[1382/1407] Compiling W3C_CSS_UI WebkitMaskPositionY.swift
[1383/1407] Compiling W3C_CSS_UI WebkitMaskRepeatX.swift
[1384/1407] Compiling W3C_CSS_UI WebkitMaskRepeatY.swift
[1385/1407] Compiling W3C_CSS_UI WebkitTapHighlightColor.swift
[1386/1407] Compiling W3C_CSS_UI WebkitTextFillColor.swift
[1392/1409] Emitting module W3C_CSS_UI
[1395/1409] Compiling W3C_CSS_UI WebkitTextSecurity.swift
[1396/1409] Compiling W3C_CSS_UI WebkitTextStroke.swift
[1397/1409] Compiling W3C_CSS_UI WebkitTextStrokeColor.swift
[1398/1409] Compiling W3C_CSS_UI WebkitTextStrokeWidth.swift
[1399/1409] Compiling W3C_CSS_UI WebkitTouchCallout.swift
[1400/1413] Compiling W3C_CSS_Layout exports.swift
[1405/1413] Compiling W3C_CSS_UI UserSelect.swift
[1406/1413] Compiling W3C_CSS_UI WebkitBorderBefore.swift
[1407/1413] Compiling W3C_CSS_UI WebkitBoxReflect.swift
[1408/1413] Compiling W3C_CSS_UI WebkitMaskBoxImage.swift
[1409/1413] Compiling W3C_CSS_UI WebkitMaskComposite.swift
[1410/1413] Compiling W3C_CSS_UI WebkitMaskPositionX.swift
[1411/1414] Emitting module W3C_CSS_Animation
[1412/1414] Compiling W3C_CSS_Animation exports.swift
[1414/1414] Emitting module W3C_CSS_Layout
[1417/1418] Emitting module W3C_CSS
[1418/1418] Compiling W3C_CSS exports.swift
Build complete! (201.81s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-cssom",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-cssom"
    },
    {
      "identity" : "swift-standards",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.16.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-standards"
    },
    {
      "identity" : "swift-ieee-754",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-ieee-754"
    },
    {
      "identity" : "swift-iec-61966",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-iec-61966"
    },
    {
      "identity" : "swift-incits-4-1986",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.5",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-incits-4-1986"
    },
    {
      "identity" : "swift-rfc-4648",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-standards/swift-rfc-4648"
    }
  ],
  "manifest_display_name" : "swift-w3c-css",
  "name" : "swift-w3c-css",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "26.0"
    },
    {
      "name" : "ios",
      "version" : "26.0"
    },
    {
      "name" : "tvos",
      "version" : "26.0"
    },
    {
      "name" : "watchos",
      "version" : "26.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "26.0"
    }
  ],
  "products" : [
    {
      "name" : "W3C CSS Shared",
      "targets" : [
        "W3C CSS Shared"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Values",
      "targets" : [
        "W3C CSS Values"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Color",
      "targets" : [
        "W3C CSS Color"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Syntax",
      "targets" : [
        "W3C CSS Syntax"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Cascade",
      "targets" : [
        "W3C CSS Cascade"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Selectors",
      "targets" : [
        "W3C CSS Selectors"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Variables",
      "targets" : [
        "W3C CSS Variables"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Display",
      "targets" : [
        "W3C CSS Display"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Flexbox",
      "targets" : [
        "W3C CSS Flexbox"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Grid",
      "targets" : [
        "W3C CSS Grid"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Positioning",
      "targets" : [
        "W3C CSS Positioning"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Multicolumn",
      "targets" : [
        "W3C CSS Multicolumn"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS BoxModel",
      "targets" : [
        "W3C CSS BoxModel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Text",
      "targets" : [
        "W3C CSS Text"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Fonts",
      "targets" : [
        "W3C CSS Fonts"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS TextDecoration",
      "targets" : [
        "W3C CSS TextDecoration"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS WritingModes",
      "targets" : [
        "W3C CSS WritingModes"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Backgrounds",
      "targets" : [
        "W3C CSS Backgrounds"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Images",
      "targets" : [
        "W3C CSS Images"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Transforms",
      "targets" : [
        "W3C CSS Transforms"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Filters",
      "targets" : [
        "W3C CSS Filters"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Masking",
      "targets" : [
        "W3C CSS Masking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Compositing",
      "targets" : [
        "W3C CSS Compositing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Animations",
      "targets" : [
        "W3C CSS Animations"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Transitions",
      "targets" : [
        "W3C CSS Transitions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Easing",
      "targets" : [
        "W3C CSS Easing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Conditional",
      "targets" : [
        "W3C CSS Conditional"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS MediaQueries",
      "targets" : [
        "W3C CSS MediaQueries"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS UI",
      "targets" : [
        "W3C CSS UI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS PseudoElements",
      "targets" : [
        "W3C CSS PseudoElements"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS PseudoClasses",
      "targets" : [
        "W3C CSS PseudoClasses"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Containment",
      "targets" : [
        "W3C CSS Containment"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Scroll",
      "targets" : [
        "W3C CSS Scroll"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Logical",
      "targets" : [
        "W3C CSS Logical"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Alignment",
      "targets" : [
        "W3C CSS Alignment"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Lists",
      "targets" : [
        "W3C CSS Lists"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS CounterStyles",
      "targets" : [
        "W3C CSS CounterStyles"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Paged",
      "targets" : [
        "W3C CSS Paged"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Layout",
      "targets" : [
        "W3C CSS Layout"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Typography",
      "targets" : [
        "W3C CSS Typography"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Visual",
      "targets" : [
        "W3C CSS Visual"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS Animation",
      "targets" : [
        "W3C CSS Animation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "W3C CSS",
      "targets" : [
        "W3C CSS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "6"
  ],
  "targets" : [
    {
      "c99name" : "W3C_CSS_WritingModes_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS WritingModes Tests",
      "path" : "Tests/W3C CSS WritingModes Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS WritingModes"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_WritingModes",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS WritingModes",
      "path" : "Sources/W3C CSS WritingModes",
      "product_memberships" : [
        "W3C CSS WritingModes",
        "W3C CSS Typography",
        "W3C CSS"
      ],
      "sources" : [
        "Direction.swift",
        "WritingMode.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Visual",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Visual",
      "path" : "Sources/W3C CSS Visual",
      "product_memberships" : [
        "W3C CSS Visual",
        "W3C CSS"
      ],
      "sources" : [
        "AspectRatio.swift",
        "ImageRendering.swift",
        "ObjectFit.swift",
        "ObjectPosition.swift",
        "Visibility.swift",
        "WillChange.swift",
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Transforms",
        "W3C CSS Filters",
        "W3C CSS Masking",
        "W3C CSS Compositing",
        "W3C CSS Positioning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Variables_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Variables Tests",
      "path" : "Tests/W3C CSS Variables Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Variables"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Variables",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Variables",
      "path" : "Sources/W3C CSS Variables",
      "product_memberships" : [
        "W3C CSS Variables",
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Values_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Values Tests",
      "path" : "Tests/W3C CSS Values Tests",
      "sources" : [
        "Angle Tests.swift",
        "AnglePercentage Tests.swift",
        "BasicShape Tests.swift",
        "CalcKeyword Tests.swift",
        "CalcSum Tests.swift",
        "Flex Tests.swift",
        "Frequency Tests.swift",
        "FrequencyPercentage Tests.swift",
        "Integer Tests.swift",
        "Length Tests.swift",
        "LengthPercentage Tests.swift",
        "Number Tests.swift",
        "NumberPercentage Tests.swift",
        "Percentage Tests.swift",
        "Position Tests.swift",
        "Ratio Tests.swift",
        "Resolution Tests.swift",
        "Support/PerformanceTests.swift",
        "Time Tests.swift",
        "TimePercentage Tests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Values"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Values",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Values",
      "path" : "Sources/W3C CSS Values",
      "product_dependencies" : [
        "IEEE 754",
        "IEC 61966",
        "RFC 4648"
      ],
      "product_memberships" : [
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Syntax",
        "W3C CSS Cascade",
        "W3C CSS Display",
        "W3C CSS Flexbox",
        "W3C CSS Grid",
        "W3C CSS Positioning",
        "W3C CSS Multicolumn",
        "W3C CSS BoxModel",
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS TextDecoration",
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Transforms",
        "W3C CSS Filters",
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS Easing",
        "W3C CSS MediaQueries",
        "W3C CSS UI",
        "W3C CSS Containment",
        "W3C CSS Scroll",
        "W3C CSS Logical",
        "W3C CSS Alignment",
        "W3C CSS Lists",
        "W3C CSS CounterStyles",
        "W3C CSS Paged",
        "W3C CSS Layout",
        "W3C CSS Typography",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "AlphaValue.swift",
        "Angle.swift",
        "AngleConvertible.swift",
        "AnglePercentage.swift",
        "BasicShape.swift",
        "CalcKeyword.swift",
        "CalcSum.swift",
        "Color.swift",
        "ColorInterpolationMethod.swift",
        "Dimension.swift",
        "FilterFunction.swift",
        "Flex.swift",
        "Frequency.swift",
        "FrequencyPercentage.swift",
        "Functions.swift",
        "HexColor.swift",
        "Hue.swift",
        "Integer.swift",
        "Length.swift",
        "LengthConvertible.swift",
        "LengthPercentage.swift",
        "LengthPercentageConvertible.swift",
        "LineStyle.swift",
        "LineStyleConvertible.swift",
        "NamedColor+sRGB.swift",
        "NamedColor.swift",
        "Number.swift",
        "NumberConvertible.swift",
        "NumberPercentage.swift",
        "Percentage.swift",
        "PercentageConvertible.swift",
        "Position.swift",
        "Ratio.swift",
        "Resolution.swift",
        "Size.swift",
        "SystemColor.swift",
        "Time.swift",
        "TimePercentage.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_UI_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS UI Tests",
      "path" : "Tests/W3C CSS UI Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS UI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_UI",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS UI",
      "path" : "Sources/W3C CSS UI",
      "product_memberships" : [
        "W3C CSS UI",
        "W3C CSS"
      ],
      "sources" : [
        "AccentColor.swift",
        "CaptionSide.swift",
        "CaretColor.swift",
        "Cursor.swift",
        "EmptyCells.swift",
        "FieldSizing.swift",
        "ForcedColorAdjust.swift",
        "ImeMode.swift",
        "InterpolateSize.swift",
        "MozFloatEdge.swift",
        "MozForceBrokenImageIcon.swift",
        "MozImageRegion.swift",
        "MozOrient.swift",
        "MozUserFocus.swift",
        "MozUserInput.swift",
        "Outline.swift",
        "OutlineColor.swift",
        "OutlineOffset.swift",
        "OutlineStyle.swift",
        "OutlineWidth.swift",
        "PointerEvents.swift",
        "PrintColorAdjust.swift",
        "Resize.swift",
        "SpeakAs.swift",
        "TableLayout.swift",
        "TouchAction.swift",
        "UserModify.swift",
        "UserSelect.swift",
        "WebkitBorderBefore.swift",
        "WebkitBoxReflect.swift",
        "WebkitMaskBoxImage.swift",
        "WebkitMaskComposite.swift",
        "WebkitMaskPositionX.swift",
        "WebkitMaskPositionY.swift",
        "WebkitMaskRepeatX.swift",
        "WebkitMaskRepeatY.swift",
        "WebkitTapHighlightColor.swift",
        "WebkitTextFillColor.swift",
        "WebkitTextSecurity.swift",
        "WebkitTextStroke.swift",
        "WebkitTextStrokeColor.swift",
        "WebkitTextStrokeWidth.swift",
        "WebkitTouchCallout.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Backgrounds"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Typography",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Typography",
      "path" : "Sources/W3C CSS Typography",
      "product_memberships" : [
        "W3C CSS Typography",
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS TextDecoration",
        "W3C CSS WritingModes"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Transitions_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Transitions Tests",
      "path" : "Tests/W3C CSS Transitions Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Transitions"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Transitions",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Transitions",
      "path" : "Sources/W3C CSS Transitions",
      "product_memberships" : [
        "W3C CSS Transitions",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "StartingStyle.swift",
        "Transition.swift",
        "TransitionBehavior.swift",
        "TransitionDelay.swift",
        "TransitionDuration.swift",
        "TransitionProperty.swift",
        "TransitionTimingFunction.swift",
        "ViewTransition.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Easing",
        "W3C CSS Color",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Transforms_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Transforms Tests",
      "path" : "Tests/W3C CSS Transforms Tests",
      "sources" : [
        "Support/PerformanceTests.swift",
        "TransformFunction Tests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Transforms"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Transforms",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Transforms",
      "path" : "Sources/W3C CSS Transforms",
      "product_memberships" : [
        "W3C CSS Transforms",
        "W3C CSS Visual",
        "W3C CSS"
      ],
      "sources" : [
        "Perspective.swift",
        "PerspectiveOrigin.swift",
        "Rotate.swift",
        "Scale.swift",
        "Transform.swift",
        "TransformBox.swift",
        "TransformFunction.swift",
        "TransformOrigin.swift",
        "TransformStyle.swift",
        "Translate.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_TextDecoration_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS TextDecoration Tests",
      "path" : "Tests/W3C CSS TextDecoration Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS TextDecoration"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_TextDecoration",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS TextDecoration",
      "path" : "Sources/W3C CSS TextDecoration",
      "product_memberships" : [
        "W3C CSS TextDecoration",
        "W3C CSS Typography",
        "W3C CSS"
      ],
      "sources" : [
        "TextDecoration.swift",
        "TextDecorationColor.swift",
        "TextDecorationLine.swift",
        "TextDecorationSkip.swift",
        "TextDecorationSkipInk.swift",
        "TextDecorationStyle.swift",
        "TextDecorationThickness.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Text_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Text Tests",
      "path" : "Tests/W3C CSS Text Tests",
      "sources" : [
        "Support/PerformanceTests.swift",
        "TextEdge Tests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Text"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Text",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Text",
      "path" : "Sources/W3C CSS Text",
      "product_memberships" : [
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS Typography",
        "W3C CSS"
      ],
      "sources" : [
        "HangingPunctuation.swift",
        "HyphenateCharacter.swift",
        "HyphenateLimitChars.swift",
        "Hyphens.swift",
        "InitialLetter.swift",
        "LetterSpacing.swift",
        "LetterSpacingEastAsian.swift",
        "LineBreak.swift",
        "LineClamp.swift",
        "LineHeight.swift",
        "LineHeightStep.swift",
        "MathDepth.swift",
        "MathShift.swift",
        "MathStyle.swift",
        "PunctuationWrap.swift",
        "RubyAlign.swift",
        "RubyPosition.swift",
        "TabSize.swift",
        "TextAlign.swift",
        "TextAlignLast.swift",
        "TextAnchor.swift",
        "TextAutospace.swift",
        "TextBox.swift",
        "TextBoxEdge.swift",
        "TextBoxTrim.swift",
        "TextCombineUpright.swift",
        "TextEdge.swift",
        "TextEmphasis.swift",
        "TextEmphasisColor.swift",
        "TextEmphasisPosition.swift",
        "TextEmphasisStyle.swift",
        "TextIndent.swift",
        "TextJustify.swift",
        "TextKashidaSpace.swift",
        "TextOrientation.swift",
        "TextOverflow.swift",
        "TextRendering.swift",
        "TextShadow.swift",
        "TextSizeAdjust.swift",
        "TextSpacing.swift",
        "TextSpacingTrim.swift",
        "TextTransform.swift",
        "TextUnderlineOffset.swift",
        "TextUnderlinePosition.swift",
        "TextWrap.swift",
        "TextWrapMode.swift",
        "TextWrapStyle.swift",
        "WhiteSpace.swift",
        "WhiteSpaceCollapse.swift",
        "WordBreak.swift",
        "WordSpacing.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Syntax_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Syntax Tests",
      "path" : "Tests/W3C CSS Syntax Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Syntax"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Syntax",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Syntax",
      "path" : "Sources/W3C CSS Syntax",
      "product_memberships" : [
        "W3C CSS Color",
        "W3C CSS Syntax",
        "W3C CSS Cascade",
        "W3C CSS Positioning",
        "W3C CSS Multicolumn",
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS TextDecoration",
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Filters",
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS MediaQueries",
        "W3C CSS UI",
        "W3C CSS Containment",
        "W3C CSS Scroll",
        "W3C CSS Lists",
        "W3C CSS CounterStyles",
        "W3C CSS Paged",
        "W3C CSS Layout",
        "W3C CSS Typography",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "AtRule.swift",
        "CharSet.swift",
        "Import.swift",
        "Namespace.swift",
        "Property.swift",
        "Scope.swift",
        "UnicodeRange Property.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Shared_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Shared Tests",
      "path" : "Tests/W3C CSS Shared Tests",
      "sources" : [
        "BoxEdge Tests.swift",
        "Global Tests.swift",
        "Overflow Tests.swift",
        "Support/PerformanceTests.swift",
        "Types Tests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Shared",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Shared",
      "path" : "Sources/W3C CSS Shared",
      "product_dependencies" : [
        "W3C CSSOM",
        "INCITS 4 1986",
        "Formatting",
        "Geometry"
      ],
      "product_memberships" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Syntax",
        "W3C CSS Cascade",
        "W3C CSS Selectors",
        "W3C CSS Variables",
        "W3C CSS Display",
        "W3C CSS Flexbox",
        "W3C CSS Grid",
        "W3C CSS Positioning",
        "W3C CSS Multicolumn",
        "W3C CSS BoxModel",
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS TextDecoration",
        "W3C CSS WritingModes",
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Transforms",
        "W3C CSS Filters",
        "W3C CSS Masking",
        "W3C CSS Compositing",
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS Easing",
        "W3C CSS Conditional",
        "W3C CSS MediaQueries",
        "W3C CSS UI",
        "W3C CSS PseudoElements",
        "W3C CSS PseudoClasses",
        "W3C CSS Containment",
        "W3C CSS Scroll",
        "W3C CSS Logical",
        "W3C CSS Alignment",
        "W3C CSS Lists",
        "W3C CSS CounterStyles",
        "W3C CSS Paged",
        "W3C CSS Layout",
        "W3C CSS Typography",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "AbsoluteSize.swift",
        "All.swift",
        "BackfaceVisibility.swift",
        "BaselinePosition.swift",
        "BlendMode.swift",
        "BoxDecorationBreak.swift",
        "BoxEdge.swift",
        "CSS.Context.swift",
        "CSSOM.swift",
        "GenericFamily.swift",
        "Global.swift",
        "GlobalConvertible.swift",
        "Overflow.swift",
        "OverflowPosition.swift",
        "Property.swift",
        "Quotes.swift",
        "RelativeSize.swift",
        "SelfPosition.swift",
        "UnicodeBidi.swift",
        "W3C_CSS.Space.swift",
        "WithGlobal.swift",
        "exports.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Selectors_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Selectors Tests",
      "path" : "Tests/W3C CSS Selectors Tests",
      "sources" : [
        "Combinator Tests.swift",
        "Selector Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Selectors"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Selectors",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Selectors",
      "path" : "Sources/W3C CSS Selectors",
      "product_memberships" : [
        "W3C CSS Cascade",
        "W3C CSS Selectors",
        "W3C CSS"
      ],
      "sources" : [
        "& nesting.swift",
        "Attribute.swift",
        "Class.swift",
        "Combinators.swift",
        "ID.swift",
        "Type.swift",
        "Universal.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Scroll_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Scroll Tests",
      "path" : "Tests/W3C CSS Scroll Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Scroll"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Scroll",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Scroll",
      "path" : "Sources/W3C CSS Scroll",
      "product_memberships" : [
        "W3C CSS Scroll",
        "W3C CSS"
      ],
      "sources" : [
        "OverscrollBehavior.swift",
        "OverscrollBehaviorBlock.swift",
        "OverscrollBehaviorInline.swift",
        "OverscrollBehaviorX.swift",
        "OverscrollBehaviorY.swift",
        "ScrollBehavior.swift",
        "ScrollMargin.swift",
        "ScrollMarginBlock.swift",
        "ScrollMarginBlockEnd.swift",
        "ScrollMarginBlockStart.swift",
        "ScrollMarginBottom.swift",
        "ScrollMarginInline.swift",
        "ScrollMarginInlineEnd.swift",
        "ScrollMarginInlineStart.swift",
        "ScrollMarginLeft.swift",
        "ScrollMarginRight.swift",
        "ScrollMarginTop.swift",
        "ScrollPadding.swift",
        "ScrollPaddingBlock.swift",
        "ScrollPaddingBlockEnd.swift",
        "ScrollPaddingBlockStart.swift",
        "ScrollPaddingBottom.swift",
        "ScrollPaddingInline.swift",
        "ScrollPaddingInlineEnd.swift",
        "ScrollPaddingInlineStart.swift",
        "ScrollPaddingLeft.swift",
        "ScrollPaddingRight.swift",
        "ScrollPaddingTop.swift",
        "ScrollSnapAlign.swift",
        "ScrollSnapStop.swift",
        "ScrollSnapType.swift",
        "ScrollTimeline.swift",
        "ScrollTimelineAxis.swift",
        "ScrollTimelineName.swift",
        "ScrollbarColor.swift",
        "ScrollbarGutter.swift",
        "ScrollbarWidth.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_PseudoElements_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS PseudoElements Tests",
      "path" : "Tests/W3C CSS PseudoElements Tests",
      "sources" : [
        "PseudoElement Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS PseudoElements"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_PseudoElements",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS PseudoElements",
      "path" : "Sources/W3C CSS PseudoElements",
      "product_memberships" : [
        "W3C CSS PseudoElements",
        "W3C CSS"
      ],
      "sources" : [
        "AnyPseudoElement.swift",
        "CSSPseudoElement.swift",
        "Pseudo Elements/after.swift",
        "Pseudo Elements/backdrop.swift",
        "Pseudo Elements/before.swift",
        "Pseudo Elements/checkmark.swift",
        "Pseudo Elements/column.swift",
        "Pseudo Elements/cue.swift",
        "Pseudo Elements/details-content.swift",
        "Pseudo Elements/file-selector-button.swift",
        "Pseudo Elements/first-letter.swift",
        "Pseudo Elements/first-line.swift",
        "Pseudo Elements/grammar-error.swift",
        "Pseudo Elements/highlight.swift",
        "Pseudo Elements/marker.swift",
        "Pseudo Elements/moz-placeholder.swift",
        "Pseudo Elements/ms-input-placeholder.swift",
        "Pseudo Elements/part.swift",
        "Pseudo Elements/placeholder.swift",
        "Pseudo Elements/selection.swift",
        "Pseudo Elements/slotted.swift",
        "Pseudo Elements/spelling-error.swift",
        "Pseudo Elements/target-text.swift",
        "Pseudo Elements/webkit-input-placeholder.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_PseudoClasses_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS PseudoClasses Tests",
      "path" : "Tests/W3C CSS PseudoClasses Tests",
      "sources" : [
        "PseudoClass Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS PseudoClasses"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_PseudoClasses",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS PseudoClasses",
      "path" : "Sources/W3C CSS PseudoClasses",
      "product_memberships" : [
        "W3C CSS PseudoClasses",
        "W3C CSS"
      ],
      "sources" : [
        "CSSPseudoClass.swift",
        "Pseudo Classes/Active.swift",
        "Pseudo Classes/AnyLink.swift",
        "Pseudo Classes/Blank.swift",
        "Pseudo Classes/Checked.swift",
        "Pseudo Classes/Default.swift",
        "Pseudo Classes/Dir.swift",
        "Pseudo Classes/Disabled.swift",
        "Pseudo Classes/Empty.swift",
        "Pseudo Classes/Enabled.swift",
        "Pseudo Classes/FirstChild.swift",
        "Pseudo Classes/FirstOfType.swift",
        "Pseudo Classes/Focus.swift",
        "Pseudo Classes/FocusVisible.swift",
        "Pseudo Classes/FocusWithin.swift",
        "Pseudo Classes/Has.swift",
        "Pseudo Classes/Hover.swift",
        "Pseudo Classes/InRange.swift",
        "Pseudo Classes/Indeterminate.swift",
        "Pseudo Classes/Invalid.swift",
        "Pseudo Classes/Is.swift",
        "Pseudo Classes/Lang.swift",
        "Pseudo Classes/LastChild.swift",
        "Pseudo Classes/LastOfType.swift",
        "Pseudo Classes/Link.swift",
        "Pseudo Classes/LocalLink.swift",
        "Pseudo Classes/Not.swift",
        "Pseudo Classes/NthChild.swift",
        "Pseudo Classes/NthLastChild.swift",
        "Pseudo Classes/NthLastOfType.swift",
        "Pseudo Classes/NthOfType.swift",
        "Pseudo Classes/OnlyChild.swift",
        "Pseudo Classes/OnlyOfType.swift",
        "Pseudo Classes/Optional.swift",
        "Pseudo Classes/OutOfRange.swift",
        "Pseudo Classes/PlaceholderShown.swift",
        "Pseudo Classes/ReadOnly.swift",
        "Pseudo Classes/ReadWrite.swift",
        "Pseudo Classes/Required.swift",
        "Pseudo Classes/Root.swift",
        "Pseudo Classes/Scope.swift",
        "Pseudo Classes/Target.swift",
        "Pseudo Classes/TargetWithin.swift",
        "Pseudo Classes/Valid.swift",
        "Pseudo Classes/Visited.swift",
        "Pseudo Classes/Where.swift",
        "Pseudo-classes.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Positioning_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Positioning Tests",
      "path" : "Tests/W3C CSS Positioning Tests",
      "sources" : [
        "PositionArea Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Positioning"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Positioning",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Positioning",
      "path" : "Sources/W3C CSS Positioning",
      "product_memberships" : [
        "W3C CSS Positioning",
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS Layout",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "AnchorName.swift",
        "Bottom.swift",
        "Clear.swift",
        "Float.swift",
        "Inset.swift",
        "InsetBlock.swift",
        "InsetBlockEnd.swift",
        "InsetBlockStart.swift",
        "InsetInline.swift",
        "InsetInlineEnd.swift",
        "InsetInlineStart.swift",
        "Left.swift",
        "Overlay.swift",
        "Position.swift",
        "PositionAnchor.swift",
        "PositionArea.swift",
        "PositionTry.swift",
        "PositionTryFallbacks.swift",
        "PositionTryOrder.swift",
        "PositionVisibility.swift",
        "Right.swift",
        "Top.swift",
        "ZIndex.swift",
        "Zoom.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Paged_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Paged Tests",
      "path" : "Tests/W3C CSS Paged Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Paged"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Paged",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Paged",
      "path" : "Sources/W3C CSS Paged",
      "product_memberships" : [
        "W3C CSS Paged",
        "W3C CSS"
      ],
      "sources" : [
        "Orphans.swift",
        "Page.swift",
        "PageBreak.swift",
        "PageBreakAfter.swift",
        "PageBreakBefore.swift",
        "PageBreakInside.swift",
        "Widows.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Multicolumn_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Multicolumn Tests",
      "path" : "Tests/W3C CSS Multicolumn Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Multicolumn"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Multicolumn",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Multicolumn",
      "path" : "Sources/W3C CSS Multicolumn",
      "product_memberships" : [
        "W3C CSS Multicolumn",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "BreakAfter.swift",
        "BreakBefore.swift",
        "BreakInside.swift",
        "ColumnCount.swift",
        "ColumnFill.swift",
        "ColumnGap.swift",
        "ColumnRule.swift",
        "ColumnRuleColor.swift",
        "ColumnRuleStyle.swift",
        "ColumnRuleWidth.swift",
        "ColumnSpan.swift",
        "ColumnWidth.swift",
        "Columns.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Backgrounds"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_MediaQueries_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS MediaQueries Tests",
      "path" : "Tests/W3C CSS MediaQueries Tests",
      "sources" : [
        "Media Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS MediaQueries"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_MediaQueries",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS MediaQueries",
      "path" : "Sources/W3C CSS MediaQueries",
      "product_memberships" : [
        "W3C CSS MediaQueries",
        "W3C CSS"
      ],
      "sources" : [
        "Import+Media.swift",
        "Media.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Masking_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Masking Tests",
      "path" : "Tests/W3C CSS Masking Tests",
      "sources" : [
        "Shape Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Masking"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Masking",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Masking",
      "path" : "Sources/W3C CSS Masking",
      "product_memberships" : [
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "Clip.swift",
        "ClipPath.swift",
        "ClipRule.swift",
        "Mask.swift",
        "MaskBorder.swift",
        "MaskBorderMode.swift",
        "MaskBorderOutset.swift",
        "MaskBorderRepeat.swift",
        "MaskBorderSlice.swift",
        "MaskBorderSource.swift",
        "MaskBorderWidth.swift",
        "MaskClip.swift",
        "MaskComposite.swift",
        "MaskImage.swift",
        "MaskMode.swift",
        "MaskOrigin.swift",
        "MaskPosition.swift",
        "MaskRepeat.swift",
        "MaskSize.swift",
        "MaskType.swift",
        "Shape.swift",
        "ShapeImageThreshold.swift",
        "ShapeMargin.swift",
        "ShapeOutside.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Images",
        "W3C CSS Positioning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Logical_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Logical Tests",
      "path" : "Tests/W3C CSS Logical Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Logical"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Logical",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Logical",
      "path" : "Sources/W3C CSS Logical",
      "product_memberships" : [
        "W3C CSS Logical",
        "W3C CSS"
      ],
      "sources" : [
        "BlockSize.swift",
        "InlineSize.swift",
        "MaxBlockSize.swift",
        "MaxInlineSize.swift",
        "MinBlockSize.swift",
        "MinInlineSize.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Lists_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Lists Tests",
      "path" : "Tests/W3C CSS Lists Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Lists"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Lists",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Lists",
      "path" : "Sources/W3C CSS Lists",
      "product_memberships" : [
        "W3C CSS Containment",
        "W3C CSS Lists",
        "W3C CSS"
      ],
      "sources" : [
        "CounterIncrement.swift",
        "CounterReset.swift",
        "CounterSet.swift",
        "ListStyle.swift",
        "ListStyleImage.swift",
        "ListStylePosition.swift",
        "ListStyleType.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS CounterStyles",
        "W3C CSS Images"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Layout",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Layout",
      "path" : "Sources/W3C CSS Layout",
      "product_memberships" : [
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Display",
        "W3C CSS Flexbox",
        "W3C CSS Grid",
        "W3C CSS Positioning",
        "W3C CSS Multicolumn",
        "W3C CSS BoxModel",
        "W3C CSS Alignment"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Images_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Images Tests",
      "path" : "Tests/W3C CSS Images Tests",
      "sources" : [
        "Gradient Tests.swift",
        "Image Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Images"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Images",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Images",
      "path" : "Sources/W3C CSS Images",
      "product_memberships" : [
        "W3C CSS Multicolumn",
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS UI",
        "W3C CSS Containment",
        "W3C CSS Lists",
        "W3C CSS Layout",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "Cx.swift",
        "Cy.swift",
        "D.swift",
        "DashedIdent.swift",
        "DominantBaseline.swift",
        "Fill.swift",
        "FillOpacity.swift",
        "FillRule.swift",
        "FilterFunction.swift",
        "Gradient.swift",
        "Image.swift",
        "ImageOrientation.swift",
        "ImageResolution.swift",
        "Marker.swift",
        "MarkerEnd.swift",
        "MarkerMid.swift",
        "MarkerStart.swift",
        "PaintOrder.swift",
        "R.swift",
        "Rx.swift",
        "Ry.swift",
        "ShapeRendering.swift",
        "StopColor.swift",
        "StopOpacity.swift",
        "Stroke.swift",
        "StrokeDasharray.swift",
        "StrokeDashoffset.swift",
        "StrokeLinecap.swift",
        "StrokeLinejoin.swift",
        "StrokeMiterlimit.swift",
        "StrokeOpacity.swift",
        "StrokeWidth.swift",
        "VectorEffect.swift",
        "X.swift",
        "Y.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Grid_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Grid Tests",
      "path" : "Tests/W3C CSS Grid Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Grid"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Grid",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Grid",
      "path" : "Sources/W3C CSS Grid",
      "product_memberships" : [
        "W3C CSS Grid",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "Grid.swift",
        "GridArea.swift",
        "GridAutoColumns.swift",
        "GridAutoFlow.swift",
        "GridAutoRows.swift",
        "GridColumn.swift",
        "GridColumnEnd.swift",
        "GridColumnStart.swift",
        "GridRow.swift",
        "GridRowEnd.swift",
        "GridRowStart.swift",
        "GridTemplate.swift",
        "GridTemplateAreas.swift",
        "GridTemplateColumns.swift",
        "GridTemplateRows.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Fonts_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Fonts Tests",
      "path" : "Tests/W3C CSS Fonts Tests",
      "sources" : [
        "AbsoluteSize Tests.swift",
        "GenericFamily Tests.swift",
        "RelativeSize Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Fonts"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Fonts",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Fonts",
      "path" : "Sources/W3C CSS Fonts",
      "product_memberships" : [
        "W3C CSS Fonts",
        "W3C CSS Typography",
        "W3C CSS"
      ],
      "sources" : [
        "AbsoluteSize.swift",
        "Font.swift",
        "FontFace.swift",
        "FontFamily.swift",
        "FontFeatureSettings.swift",
        "FontFeatureValues.swift",
        "FontKerning.swift",
        "FontLanguageOverride.swift",
        "FontOpticalSizing.swift",
        "FontPalette.swift",
        "FontPaletteValues.swift",
        "FontSize.swift",
        "FontSizeAdjust.swift",
        "FontSmooth.swift",
        "FontStretch.swift",
        "FontStyle.swift",
        "FontSynthesis.swift",
        "FontSynthesisPosition.swift",
        "FontSynthesisSmallCaps.swift",
        "FontSynthesisStyle.swift",
        "FontSynthesisWeight.swift",
        "FontVariant.swift",
        "FontVariantAlternates.swift",
        "FontVariantCaps.swift",
        "FontVariantEastAsian.swift",
        "FontVariantEmoji.swift",
        "FontVariantLigatures.swift",
        "FontVariantNumeric.swift",
        "FontVariantPosition.swift",
        "FontVariationSettings.swift",
        "FontWeight.swift",
        "GenericFamily.swift",
        "RelativeSize.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Syntax",
        "W3C CSS Text"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Flexbox_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Flexbox Tests",
      "path" : "Tests/W3C CSS Flexbox Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Flexbox"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Flexbox",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Flexbox",
      "path" : "Sources/W3C CSS Flexbox",
      "product_memberships" : [
        "W3C CSS Flexbox",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "Flex.swift",
        "FlexBasis.swift",
        "FlexDirection.swift",
        "FlexFlow.swift",
        "FlexGrow.swift",
        "FlexShrink.swift",
        "FlexWrap.swift",
        "Gap.swift",
        "Order.swift",
        "RowGap.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Alignment"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Filters_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Filters Tests",
      "path" : "Tests/W3C CSS Filters Tests",
      "sources" : [
        "FilterFunction Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Filters"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Filters",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Filters",
      "path" : "Sources/W3C CSS Filters",
      "product_memberships" : [
        "W3C CSS Filters",
        "W3C CSS Visual",
        "W3C CSS"
      ],
      "sources" : [
        "BackdropFilter.swift",
        "Filter.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Easing_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Easing Tests",
      "path" : "Tests/W3C CSS Easing Tests",
      "sources" : [
        "EasingFunction Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Easing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Easing",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Easing",
      "path" : "Sources/W3C CSS Easing",
      "product_memberships" : [
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS Easing",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "EasingFunction.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Display_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Display Tests",
      "path" : "Tests/W3C CSS Display Tests",
      "sources" : [
        "DisplayBox Tests.swift",
        "DisplayInside Tests.swift",
        "DisplayInternal Tests.swift",
        "DisplayLegacy Tests.swift",
        "DisplayListitem Tests.swift",
        "DisplayOutside Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Display"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Display",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Display",
      "path" : "Sources/W3C CSS Display",
      "product_memberships" : [
        "W3C CSS Display",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "Display.swift",
        "DisplayBox.swift",
        "DisplayInside.swift",
        "DisplayInternal.swift",
        "DisplayLegacy.swift",
        "DisplayListitem.swift",
        "DisplayOutside.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_CounterStyles_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS CounterStyles Tests",
      "path" : "Tests/W3C CSS CounterStyles Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS CounterStyles"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_CounterStyles",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS CounterStyles",
      "path" : "Sources/W3C CSS CounterStyles",
      "product_memberships" : [
        "W3C CSS Containment",
        "W3C CSS Lists",
        "W3C CSS CounterStyles",
        "W3C CSS"
      ],
      "sources" : [
        "CounterStyle.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Containment_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Containment Tests",
      "path" : "Tests/W3C CSS Containment Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Containment"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Containment",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Containment",
      "path" : "Sources/W3C CSS Containment",
      "product_memberships" : [
        "W3C CSS Containment",
        "W3C CSS"
      ],
      "sources" : [
        "Contain.swift",
        "ContainIntrinsicBlockSize.swift",
        "ContainIntrinsicHeight.swift",
        "ContainIntrinsicInlineSize.swift",
        "ContainIntrinsicSize.swift",
        "ContainIntrinsicWidth.swift",
        "Container.swift",
        "ContainerName.swift",
        "ContainerType.swift",
        "Content.swift",
        "ContentVisibility.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Lists"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Conditional_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Conditional Tests",
      "path" : "Tests/W3C CSS Conditional Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Conditional"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Conditional",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Conditional",
      "path" : "Sources/W3C CSS Conditional",
      "product_memberships" : [
        "W3C CSS Conditional",
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Compositing_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Compositing Tests",
      "path" : "Tests/W3C CSS Compositing Tests",
      "sources" : [
        "BlendMode Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Compositing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Compositing",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Compositing",
      "path" : "Sources/W3C CSS Compositing",
      "product_memberships" : [
        "W3C CSS Compositing",
        "W3C CSS Visual",
        "W3C CSS"
      ],
      "sources" : [
        "BlendMode.swift",
        "Isolation.swift",
        "MixBlendMode.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Color_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Color Tests",
      "path" : "Tests/W3C CSS Color Tests",
      "sources" : [
        "AlphaValue Tests.swift",
        "Color Tests.swift",
        "ColorInterpolationMethod Tests.swift",
        "HexColor Tests.swift",
        "Hue Tests.swift",
        "NamedColor Tests.swift",
        "Support/PerformanceTests.swift",
        "SystemColor Tests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Color"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Color",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Color",
      "path" : "Sources/W3C CSS Color",
      "product_memberships" : [
        "W3C CSS Color",
        "W3C CSS Multicolumn",
        "W3C CSS Text",
        "W3C CSS Fonts",
        "W3C CSS TextDecoration",
        "W3C CSS Backgrounds",
        "W3C CSS Images",
        "W3C CSS Filters",
        "W3C CSS Masking",
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS UI",
        "W3C CSS Containment",
        "W3C CSS Scroll",
        "W3C CSS Lists",
        "W3C CSS Layout",
        "W3C CSS Typography",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "Appearance.swift",
        "Color+Validation.swift",
        "Color.swift",
        "ColorConvertible.swift",
        "ColorInterpolation.swift",
        "ColorInterpolationFilters.swift",
        "ColorProfile.swift",
        "ColorScheme.swift",
        "ColorValidation.swift",
        "FloodColor.swift",
        "FloodOpacity.swift",
        "LightingColor.swift",
        "Opacity.swift",
        "SystemColor.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Syntax"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Cascade_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Cascade Tests",
      "path" : "Tests/W3C CSS Cascade Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Cascade"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Cascade",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Cascade",
      "path" : "Sources/W3C CSS Cascade",
      "product_memberships" : [
        "W3C CSS Cascade",
        "W3C CSS"
      ],
      "sources" : [
        "Layer.swift",
        "Supports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Syntax",
        "W3C CSS Selectors"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_BoxModel_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS BoxModel Tests",
      "path" : "Tests/W3C CSS BoxModel Tests",
      "sources" : [
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS BoxModel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_BoxModel",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS BoxModel",
      "path" : "Sources/W3C CSS BoxModel",
      "product_memberships" : [
        "W3C CSS BoxModel",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "BoxSizing.swift",
        "Height.swift",
        "Margin.swift",
        "MarginBlock.swift",
        "MarginBlockEnd.swift",
        "MarginBlockStart.swift",
        "MarginBottom.swift",
        "MarginInline.swift",
        "MarginInlineEnd.swift",
        "MarginInlineStart.swift",
        "MarginLeft.swift",
        "MarginRight.swift",
        "MarginTop.swift",
        "MarginTrim.swift",
        "MaxHeight.swift",
        "MaxWidth.swift",
        "MinHeight.swift",
        "MinWidth.swift",
        "Overflow.swift",
        "OverflowAnchor.swift",
        "OverflowBlock.swift",
        "OverflowClipMargin.swift",
        "OverflowInline.swift",
        "OverflowType.swift",
        "OverflowWrap.swift",
        "OverflowX.swift",
        "OverflowY.swift",
        "Padding.swift",
        "PaddingBlock.swift",
        "PaddingBlockEnd.swift",
        "PaddingBlockStart.swift",
        "PaddingBottom.swift",
        "PaddingInline.swift",
        "PaddingInlineEnd.swift",
        "PaddingInlineStart.swift",
        "PaddingLeft.swift",
        "PaddingRight.swift",
        "PaddingTop.swift",
        "Width.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Backgrounds_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Backgrounds Tests",
      "path" : "Tests/W3C CSS Backgrounds Tests",
      "sources" : [
        "LineStyle Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Backgrounds"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Backgrounds",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Backgrounds",
      "path" : "Sources/W3C CSS Backgrounds",
      "product_memberships" : [
        "W3C CSS Multicolumn",
        "W3C CSS Backgrounds",
        "W3C CSS UI",
        "W3C CSS Layout",
        "W3C CSS Visual",
        "W3C CSS"
      ],
      "sources" : [
        "Background.swift",
        "BackgroundAttachment.swift",
        "BackgroundBlendMode.swift",
        "BackgroundClip.swift",
        "BackgroundColor.swift",
        "BackgroundImage.swift",
        "BackgroundOrigin.swift",
        "BackgroundPosition.swift",
        "BackgroundPositionX.swift",
        "BackgroundPositionY.swift",
        "BackgroundRepeat.swift",
        "BackgroundSize.swift",
        "Border.swift",
        "BorderBlock.swift",
        "BorderBlockColor.swift",
        "BorderBlockEnd.swift",
        "BorderBlockEndColor.swift",
        "BorderBlockEndStyle.swift",
        "BorderBlockEndWidth.swift",
        "BorderBlockStart.swift",
        "BorderBlockStartColor.swift",
        "BorderBlockStartStyle.swift",
        "BorderBlockStartWidth.swift",
        "BorderBlockStyle.swift",
        "BorderBlockWidth.swift",
        "BorderBottom.swift",
        "BorderBottomColor.swift",
        "BorderBottomLeftRadius.swift",
        "BorderBottomRightRadius.swift",
        "BorderBottomStyle.swift",
        "BorderBottomWidth.swift",
        "BorderCollapse.swift",
        "BorderColor.swift",
        "BorderEndEndRadius.swift",
        "BorderEndStartRadius.swift",
        "BorderImage.swift",
        "BorderImageOutset.swift",
        "BorderImageRepeat.swift",
        "BorderImageSlice.swift",
        "BorderImageSource.swift",
        "BorderImageWidth.swift",
        "BorderInline.swift",
        "BorderInlineColor.swift",
        "BorderInlineEnd.swift",
        "BorderInlineEndColor.swift",
        "BorderInlineEndStyle.swift",
        "BorderInlineEndWidth.swift",
        "BorderInlineStart.swift",
        "BorderInlineStartColor.swift",
        "BorderInlineStartStyle.swift",
        "BorderInlineStartWidth.swift",
        "BorderInlineStyle.swift",
        "BorderInlineWidth.swift",
        "BorderLeft.swift",
        "BorderLeftColor.swift",
        "BorderLeftStyle.swift",
        "BorderLeftWidth.swift",
        "BorderRadius.swift",
        "BorderRight.swift",
        "BorderRightColor.swift",
        "BorderRightStyle.swift",
        "BorderRightWidth.swift",
        "BorderSpacing.swift",
        "BorderStartEndRadius.swift",
        "BorderStartStartRadius.swift",
        "BorderStyle.swift",
        "BorderTop.swift",
        "BorderTopColor.swift",
        "BorderTopLeftRadius.swift",
        "BorderTopRightRadius.swift",
        "BorderTopStyle.swift",
        "BorderTopWidth.swift",
        "BorderWidth.swift",
        "BoxShadow.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Images"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Animations_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Animations Tests",
      "path" : "Tests/W3C CSS Animations Tests",
      "sources" : [
        "AnimationComposition Tests.swift",
        "AnimationDelay Tests.swift",
        "AnimationDirection Tests.swift",
        "AnimationDuration Tests.swift",
        "AnimationFillMode Tests.swift",
        "AnimationIterationCount Tests.swift",
        "AnimationName Tests.swift",
        "AnimationPlayState Tests.swift",
        "AnimationRange Tests.swift",
        "AnimationRangeEnd Tests.swift",
        "AnimationRangeStart Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Animations"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Animations",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Animations",
      "path" : "Sources/W3C CSS Animations",
      "product_memberships" : [
        "W3C CSS Animations",
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "Animation.swift",
        "AnimationComposition.swift",
        "AnimationDelay.swift",
        "AnimationDirection.swift",
        "AnimationDuration.swift",
        "AnimationFillMode.swift",
        "AnimationIterationCount.swift",
        "AnimationName.swift",
        "AnimationPlayState.swift",
        "AnimationRange.swift",
        "AnimationRangeEnd.swift",
        "AnimationRangeStart.swift",
        "AnimationTimeline.swift",
        "AnimationTimingFunction.swift",
        "Keyframes.swift",
        "Offset.swift",
        "OffsetAnchor.swift",
        "OffsetDistance.swift",
        "OffsetPath.swift",
        "OffsetPosition.swift",
        "OffsetRotate.swift",
        "TimelineScope.swift",
        "ViewTimeline.swift",
        "ViewTimelineAxis.swift",
        "ViewTimelineInset.swift",
        "ViewTimelineName.swift",
        "ViewTransitionName.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Easing",
        "W3C CSS Masking",
        "W3C CSS Positioning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Animation",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Animation",
      "path" : "Sources/W3C CSS Animation",
      "product_memberships" : [
        "W3C CSS Animation",
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Animations",
        "W3C CSS Transitions",
        "W3C CSS Easing",
        "W3C CSS Positioning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS_Alignment_Tests",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Alignment Tests",
      "path" : "Tests/W3C CSS Alignment Tests",
      "sources" : [
        "AlignContent Tests.swift",
        "AlignItems Tests.swift",
        "AlignSelf Tests.swift",
        "AlignmentBaseline Tests.swift",
        "BaselinePosition Tests.swift",
        "ContentDistribution Tests.swift",
        "ContentPosition Tests.swift",
        "OverflowPosition Tests.swift",
        "SelfPosition Tests.swift",
        "Support/PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Alignment"
      ],
      "type" : "test"
    },
    {
      "c99name" : "W3C_CSS_Alignment",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS Alignment",
      "path" : "Sources/W3C CSS Alignment",
      "product_memberships" : [
        "W3C CSS Flexbox",
        "W3C CSS Alignment",
        "W3C CSS Layout",
        "W3C CSS"
      ],
      "sources" : [
        "AlignContent.swift",
        "AlignItems.swift",
        "AlignSelf.swift",
        "AlignmentBaseline.swift",
        "ContentDistribution.swift",
        "ContentPosition.swift",
        "JustifyContent.swift",
        "JustifyItems.swift",
        "JustifySelf.swift",
        "PlaceContent.swift",
        "PlaceItems.swift",
        "PlaceSelf.swift",
        "VerticalAlign.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values"
      ],
      "type" : "library"
    },
    {
      "c99name" : "W3C_CSS",
      "module_type" : "SwiftTarget",
      "name" : "W3C CSS",
      "path" : "Sources/W3C CSS",
      "product_memberships" : [
        "W3C CSS"
      ],
      "sources" : [
        "exports.swift"
      ],
      "target_dependencies" : [
        "W3C CSS Shared",
        "W3C CSS Values",
        "W3C CSS Color",
        "W3C CSS Syntax",
        "W3C CSS Cascade",
        "W3C CSS Selectors",
        "W3C CSS Variables",
        "W3C CSS Layout",
        "W3C CSS Typography",
        "W3C CSS Visual",
        "W3C CSS Animation",
        "W3C CSS Conditional",
        "W3C CSS MediaQueries",
        "W3C CSS UI",
        "W3C CSS PseudoElements",
        "W3C CSS PseudoClasses",
        "W3C CSS Containment",
        "W3C CSS Scroll",
        "W3C CSS Logical",
        "W3C CSS Lists",
        "W3C CSS CounterStyles",
        "W3C CSS Paged"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.2"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.