From ce84c464ffe883dbbb6cd4980098b9837f1ad068 Mon Sep 17 00:00:00 2001 From: Alex Hoppen Date: Thu, 6 Mar 2025 22:50:44 -0800 Subject: [PATCH] Add SwiftSyntax602 version marker module --- Package.swift | 5 +++++ .../SwiftSyntax602/Empty.swift | 15 +++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Sources/VersionMarkerModules/SwiftSyntax602/Empty.swift 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.