Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.1.1"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "600.0.1"),
],
targets: [
.macro(
Expand Down
10 changes: 5 additions & 5 deletions Tests/SFSymbolsMacroTests/SFSymbolsMacroTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}

#if canImport (UIKit)
#if canImport(UIKit)
func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -76,7 +76,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}

#if canImport (UIKit)
#if canImport(UIKit)
public func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -119,7 +119,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}

#if canImport (UIKit)
#if canImport(UIKit)
internal func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -162,7 +162,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}

#if canImport (UIKit)
#if canImport(UIKit)
fileprivate func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -205,7 +205,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}

#if canImport (UIKit)
#if canImport(UIKit)
private func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down
Loading