Skip to content

[5.1] FoundationXML: Adoption #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
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.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ import Darwin.C
if getenv("SWIFTCI_USE_LOCAL_DEPS") == nil {
// Building standalone.
package.dependencies += [
.package(url: "https://github.com/apple/indexstore-db.git", .branch("master")),
.package(url: "https://github.com/apple/swift-package-manager.git", .branch("master")),
.package(url: "https://github.com/apple/indexstore-db.git", .branch("swift-5.1-branch")),
.package(url: "https://github.com/apple/swift-package-manager.git", .branch("swift-5.1-branch")),
]
} else {
package.dependencies += [
Expand Down
4 changes: 4 additions & 0 deletions Sources/SourceKit/sourcekitd/CommentXML.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
import SKSupport
import Foundation

#if canImport(FoundationXML)
import FoundationXML
#endif

enum CommentXMLError: Error {
case noRootElement
}
Expand Down