Skip to content

Move the _Unicode module into _StringProcessing #145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
Expand Down
11 changes: 1 addition & 10 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ let package = Package(
.library(
name: "_MatchingEngine",
targets: ["_MatchingEngine"]),
.library(
name: "_Unicode",
targets: ["_Unicode"]),
.executable(
name: "VariadicsGenerator",
targets: ["VariadicsGenerator"])
Expand All @@ -31,7 +28,7 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "_MatchingEngine",
dependencies: [/*"_Unicode"*/],
dependencies: [],
swiftSettings: [
.unsafeFlags(["-enable-library-evolution"])
]),
Expand All @@ -44,18 +41,12 @@ let package = Package(
swiftSettings: [
.unsafeFlags(["-enable-library-evolution"])
]),
.target(
name: "_Unicode",
dependencies: []),
.testTarget(
name: "RegexTests",
dependencies: ["_StringProcessing"]),
.target(
name: "Prototypes",
dependencies: ["_MatchingEngine"]),
.testTarget(
name: "UnicodeTests",
dependencies: ["_Unicode"]),

// MARK: Scripts
.executableTarget(
Expand Down
File renamed without changes.
12,436 changes: 12,436 additions & 0 deletions Utils/gen-unicode-data/Data/Apple/DerivedCoreProperties.txt

Large diffs are not rendered by default.

34,685 changes: 34,685 additions & 0 deletions Utils/gen-unicode-data/Data/Apple/UnicodeData.txt

Large diffs are not rendered by default.

1,952 changes: 1,952 additions & 0 deletions Utils/gen-unicode-data/Data/DerivedAge.txt

Large diffs are not rendered by default.

241 changes: 241 additions & 0 deletions Utils/gen-unicode-data/Data/DerivedBinaryProperties.txt

Large diffs are not rendered by default.

12,416 changes: 12,416 additions & 0 deletions Utils/gen-unicode-data/Data/DerivedCoreProperties.txt

Large diffs are not rendered by default.

4,192 changes: 4,192 additions & 0 deletions Utils/gen-unicode-data/Data/DerivedGeneralCategory.txt

Large diffs are not rendered by default.

Loading