Skip to content

Commit ff266c6

Browse files
authored
Merge pull request #145 from Azoy/unicode-but-in-sp
Move the _Unicode module into _StringProcessing
2 parents 796d69b + 69f2798 commit ff266c6

Some content is hidden

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

59 files changed

+165066
-10
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
# Xcode
24
#
35
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

Package.swift

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ let package = Package(
1616
.library(
1717
name: "_MatchingEngine",
1818
targets: ["_MatchingEngine"]),
19-
.library(
20-
name: "_Unicode",
21-
targets: ["_Unicode"]),
2219
.executable(
2320
name: "VariadicsGenerator",
2421
targets: ["VariadicsGenerator"])
@@ -31,7 +28,7 @@ let package = Package(
3128
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
3229
.target(
3330
name: "_MatchingEngine",
34-
dependencies: [/*"_Unicode"*/],
31+
dependencies: [],
3532
swiftSettings: [
3633
.unsafeFlags(["-enable-library-evolution"])
3734
]),
@@ -45,9 +42,6 @@ let package = Package(
4542
.unsafeFlags(["-enable-library-evolution"]),
4643
.unsafeFlags(["-Xfrontend", "-enable-experimental-pairwise-build-block"])
4744
]),
48-
.target(
49-
name: "_Unicode",
50-
dependencies: []),
5145
.testTarget(
5246
name: "RegexTests",
5347
dependencies: ["_StringProcessing"],
@@ -57,9 +51,6 @@ let package = Package(
5751
.target(
5852
name: "Prototypes",
5953
dependencies: ["_MatchingEngine"]),
60-
.testTarget(
61-
name: "UnicodeTests",
62-
dependencies: ["_Unicode"]),
6354

6455
// MARK: Scripts
6556
.executableTarget(
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)