File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ add_subdirectory(SwiftSyntax)
11
11
add_subdirectory (SwiftDiagnostics )
12
12
add_subdirectory (SwiftParser )
13
13
add_subdirectory (SwiftParserDiagnostics )
14
+ add_subdirectory (SwiftRefactor )
14
15
add_subdirectory (SwiftOperators )
15
16
add_subdirectory (SwiftSyntaxBuilder )
16
17
add_subdirectory (SwiftSyntaxMacros )
Original file line number Diff line number Diff line change
1
+ # This source file is part of the Swift.org open source project
2
+ #
3
+ # Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
4
+ # Licensed under Apache License v2.0 with Runtime Library Exception
5
+ #
6
+ # See http://swift.org/LICENSE.txt for license information
7
+ # See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
+
9
+ add_swift_syntax_library (SwiftRefactor
10
+ AddSeparatorsToIntegerLiteral.swift
11
+ CallToTrailingClosures.swift
12
+ ExpandEditorPlaceholder.swift
13
+ FormatRawStringLiteral.swift
14
+ IntegerLiteralUtilities.swift
15
+ MigrateToNewIfLetSyntax.swift
16
+ OpaqueParameterToGeneric.swift
17
+ RefactoringProvider.swift
18
+ RemoveSeparatorsFromIntegerLiteral.swift
19
+ )
20
+
21
+ target_link_swift_syntax_libraries (SwiftRefactor PUBLIC
22
+ SwiftBasicFormat
23
+ SwiftParser
24
+ SwiftSyntax
25
+ SwiftSyntaxBuilder
26
+ )
You can’t perform that action at this time.
0 commit comments