-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
syntax: add emoji and break properties
This commit adds several emoji properties such as Emoji and Extended_Pictographic. We also add support for the Grapheme_Cluster_Break, Word_Break and Sentence_Break enumeration properties.
- Loading branch information
1 parent
770edd5
commit ecc1a5a
Showing
10 changed files
with
3,580 additions
and
1,722 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
455 changes: 455 additions & 0 deletions
455
regex-syntax/src/unicode_tables/grapheme_cluster_break.rs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
pub mod age; | ||
pub mod case_folding_simple; | ||
pub mod general_category; | ||
pub mod grapheme_cluster_break; | ||
pub mod perl_word; | ||
pub mod property_bool; | ||
pub mod property_names; | ||
pub mod property_values; | ||
pub mod script_extension; | ||
pub mod script; | ||
pub mod sentence_break; | ||
pub mod word_break; |
3,736 changes: 2,019 additions & 1,717 deletions
3,736
regex-syntax/src/unicode_tables/property_bool.rs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.