Skip to content

Commit 72a3ce9

Browse files
committed
Merge branch 'main' of github.com:apple/swift-syntax into kelvin13-omit-unsafe-flags
2 parents 202a319 + 440ec9a commit 72a3ce9

File tree

92 files changed

+416
-80
lines changed

Some content is hidden

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

92 files changed

+416
-80
lines changed

CODEOWNERS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file is a list of the people responsible for ensuring that patches for a
2+
# particular part of SwiftSyntax are reviewed, either by themselves or by
3+
# someone else. They are also the gatekeepers for their part of Swift, with the
4+
# final word on what goes in or not.
5+
6+
# Lines starting with '#' are comments.
7+
# Each line is a file pattern followed by one or more owners.
8+
# Order is important. The last matching pattern has the most precedence.
9+
10+
# Owner of anything in SwiftSyntax not owned by anyone else.
11+
# N: Alex Hoppen
12+
13+
* @ahoppen

Sources/SwiftSyntax/AbsolutePosition.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/AtomicCounter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/CNodes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/IncrementalParseTransition.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/Misc.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
// This source file is part of the Swift.org open source project
1313
//
14-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
14+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1515
// Licensed under Apache License v2.0 with Runtime Library Exception
1616
//
1717
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/RawSyntax.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SourceLength.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SourceLocation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SourcePresence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/Syntax.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxAnyVisitor.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxBaseNodes.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
// This source file is part of the Swift.org open source project
1313
//
14-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
14+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1515
// Licensed under Apache License v2.0 with Runtime Library Exception
1616
//
1717
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxBuilders.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// This source file is part of the Swift.org open source project
1212
//
13-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
13+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1414
// Licensed under Apache License v2.0 with Runtime Library Exception
1515
//
1616
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxChildren.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxClassification.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
//
2828
// This source file is part of the Swift.org open source project
2929
//
30-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
30+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
3131
// Licensed under Apache License v2.0 with Runtime Library Exception
3232
//
3333
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxClassifier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxCollections.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// This source file is part of the Swift.org open source project
1212
//
13-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
13+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1414
// Licensed under Apache License v2.0 with Runtime Library Exception
1515
//
1616
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxData.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxEnum.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
// This source file is part of the Swift.org open source project
1313
//
14-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
14+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1515
// Licensed under Apache License v2.0 with Runtime Library Exception
1616
//
1717
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxFactory.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxKind.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// This source file is part of the Swift.org open source project
1212
//
13-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
13+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1414
// Licensed under Apache License v2.0 with Runtime Library Exception
1515
//
1616
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxNodes.swift.gyb.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
// This source file is part of the Swift.org open source project
1313
//
14-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
14+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1515
// Licensed under Apache License v2.0 with Runtime Library Exception
1616
//
1717
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxOtherNodes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxRewriter.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxTraits.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
// This source file is part of the Swift.org open source project
1313
//
14-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
14+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1515
// Licensed under Apache License v2.0 with Runtime Library Exception
1616
//
1717
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxVerifier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/SyntaxVisitor.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/TokenKind.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/Trivia.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// This source file is part of the Swift.org open source project
1111
//
12-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
12+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
1313
// Licensed under Apache License v2.0 with Runtime Library Exception
1414
//
1515
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/Utils.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/_SyntaxParserInterop.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/Misc.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxAnyVisitor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxBaseNodes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxBuilders.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxClassification.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxCollections.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxEnum.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxFactory.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxKind.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxRewriter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

Sources/SwiftSyntax/gyb_generated/SyntaxTraits.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// This source file is part of the Swift.org open source project
66
//
7-
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
7+
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
88
// Licensed under Apache License v2.0 with Runtime Library Exception
99
//
1010
// See https://swift.org/LICENSE.txt for license information

0 commit comments

Comments
 (0)