File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed
SwiftCompilerSources/Sources Expand file tree Collapse file tree 3 files changed +33
-0
lines changed 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 - 2021 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_compiler_module (AST
10
+ SubstitutionMap.swift )
11
+
Original file line number Diff line number Diff line change
1
+ //===--- PassUtils.swift - Utilities for optimzation passes ---------------===//
2
+ //
3
+ // This source file is part of the Swift.org 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 https://swift.org/LICENSE.txt for license information
9
+ // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10
+ //
11
+ //===----------------------------------------------------------------------===//
12
+
13
+ import SILBridging
14
+
15
+ public struct SubstitutionMap {
16
+ let bridged : BridgedSubstitutionMap
17
+
18
+ public init ( _ bridged: BridgedSubstitutionMap ) {
19
+ self . bridged = bridged
20
+ }
21
+ }
Original file line number Diff line number Diff line change 9
9
if (SWIFT_ENABLE_EXPERIMENTAL_STRING_PROCESSING )
10
10
add_subdirectory (ExperimentalRegex )
11
11
endif ()
12
+ add_subdirectory (AST )
12
13
add_subdirectory (SIL )
13
14
add_subdirectory (Optimizer )
You can’t perform that action at this time.
0 commit comments