Skip to content

Commit e25a590

Browse files
authored
add soundness script (swiftlang#4230)
1 parent 312aeb3 commit e25a590

File tree

495 files changed

+5501
-4430
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

495 files changed

+5501
-4430
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This source file is part of the Swift.org open source project
1+
# This source file is part of the Swift open source project
22
#
33
# Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
44
# Licensed under Apache License v2.0 with Runtime Library Exception

Package.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
// swift-tools-version:5.5
22

3-
/*
4-
This source file is part of the Swift.org open source project
5-
6-
Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
7-
Licensed under Apache License v2.0 with Runtime Library Exception
8-
9-
See http://swift.org/LICENSE.txt for license information
10-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
11-
*/
3+
//===----------------------------------------------------------------------===//
4+
//
5+
// This source file is part of the Swift open source project
6+
//
7+
// Copyright (c) 2014-2022 Apple Inc. and the Swift project authors
8+
// Licensed under Apache License v2.0 with Runtime Library Exception
9+
//
10+
// See http://swift.org/LICENSE.txt for license information
11+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
12+
//
13+
//===----------------------------------------------------------------------===//
1214

1315
import PackageDescription
1416
import class Foundation.ProcessInfo

Sources/Basics/Archiver+Zip.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2014-2022 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import TSCBasic
1214
import Dispatch

Sources/Basics/Archiver.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2014-2022 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import TSCBasic
1214

Sources/Basics/AuthorizationProvider.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2021 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2021 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import struct Foundation.Data
1214
import struct Foundation.URL

Sources/Basics/ByteString+Extensions.swift

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
Copyright (c) 2020 Apple Inc. and the Swift project authors
4-
Licensed under Apache License v2.0 with Runtime Library Exception
5-
See http://swift.org/LICENSE.txt for license information
6-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
7-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
812

913
import TSCBasic
1014

Sources/Basics/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This source file is part of the Swift.org open source project
1+
# This source file is part of the Swift open source project
22
#
33
# Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
44
# Licensed under Apache License v2.0 with Runtime Library Exception

Sources/Basics/Cancellator.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2022 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2022 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Dispatch
1214
import Foundation

Sources/Basics/ConcurrencyHelpers.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Dispatch
1214
import class Foundation.ProcessInfo

Sources/Basics/Dictionary+Extensions.swift

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
Copyright (c) 2020 Apple Inc. and the Swift project authors
4-
Licensed under Apache License v2.0 with Runtime Library Exception
5-
See http://swift.org/LICENSE.txt for license information
6-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
7-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
812

913
import TSCBasic
1014

Sources/Basics/DispatchTimeInterval+Extensions.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020-2022 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020-2022 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Dispatch
1214
import struct Foundation.TimeInterval

Sources/Basics/EnvironmentVariables.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2021 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2021 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import TSCBasic
1214
import Foundation

Sources/Basics/Errors.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import struct TSCBasic.StringError
1214

Sources/Basics/FileSystem+Extensions.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020-2021 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020-2021 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import class Foundation.FileManager
1214
import struct Foundation.Data

Sources/Basics/HTPClient+URLSession.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020-2022 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020-2022 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Foundation
1214
import TSCBasic

Sources/Basics/HTTPClient.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Dispatch
1214
import struct Foundation.Data

Sources/Basics/JSON+Extensions.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2020-2021 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2020-2021 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import class Foundation.DateFormatter
1214
import struct Foundation.Data

Sources/Basics/JSONDecoder+Extensions.swift

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
/*
2-
This source file is part of the Swift.org open source project
3-
4-
Copyright (c) 2021 Apple Inc. and the Swift project authors
5-
Licensed under Apache License v2.0 with Runtime Library Exception
6-
7-
See http://swift.org/LICENSE.txt for license information
8-
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9-
*/
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift open source project
4+
//
5+
// Copyright (c) 2021 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See http://swift.org/LICENSE.txt for license information
9+
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
1012

1113
import Foundation
1214

0 commit comments

Comments
 (0)