-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement UAX31's quick check algorithm
- Loading branch information
Showing
23 changed files
with
2,320 additions
and
4,380 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Identifiers are verifiable against normalization form C | ||
|
||
It is now possible to verify identifiers against normalization form C, as per UAX31 and C23. | ||
|
||
The quick check algorithm that is in use is an incomplete form that does not handle maybes and can result in false positives in errors. | ||
The purpose of this algorithm in its incomplete state is to minimize normalization in a future update. | ||
|
||
It is configurable for both D and ImportC using ``-normalization=<strategy>`` and ``-normalization-importc=<strategy>``. | ||
Using the options ``ignore``, ``deprecate``, ``warn``, and ``error``. | ||
|
||
Unless you use non-ASCII characters, this change will not affect you. |
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.