diff --git a/Package.swift b/Package.swift index b8da017f322..728b8327e12 100644 --- a/Package.swift +++ b/Package.swift @@ -242,6 +242,11 @@ let package = Package( path: "Sources/VersionMarkerModules/SwiftSyntax601" ), + .target( + name: "SwiftSyntax602", + path: "Sources/VersionMarkerModules/SwiftSyntax602" + ), + // MARK: SwiftSyntaxBuilder .target( diff --git a/Sources/VersionMarkerModules/SwiftSyntax602/Empty.swift b/Sources/VersionMarkerModules/SwiftSyntax602/Empty.swift new file mode 100644 index 00000000000..a86367a450d --- /dev/null +++ b/Sources/VersionMarkerModules/SwiftSyntax602/Empty.swift @@ -0,0 +1,15 @@ +//===----------------------------------------------------------------------===// +// +// This source file is part of the Swift.org open source project +// +// Copyright (c) 2014 - 2025 Apple Inc. and the Swift project authors +// Licensed under Apache License v2.0 with Runtime Library Exception +// +// See https://swift.org/LICENSE.txt for license information +// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors +// +//===----------------------------------------------------------------------===// + +// The SwiftSyntax602 module is intentionally empty. +// It serves as an indicator which version of swift-syntax a package is building against. +// See the 'Macro Versioning.md' document for more details.