From: Jean Privat Date: Tue, 22 Sep 2015 19:41:29 +0000 (-0400) Subject: Merge: Migration from ascii to code_point X-Git-Tag: v0.7.8~12 X-Git-Url: http://nitlanguage.org Merge: Migration from ascii to code_point As complement to #1262 and #1718, this PR solves part of both issues. One does the migration from `ascii` to `code_point` since Unicode is a bit more than ASCII, let's try to use the right vocabulary when dealing with it. The `ascii` service is however kept alive, but its contract is changed from Int to Byte to be used directly on a `Char` without the need to have the old `'c'.ascii.to_b`, now a simple `'c'.ascii` will do the exact same. A further PR will be submitted later to prevent the use of `ascii` on non-ASCII literal characters. Pull-Request: #1726 Reviewed-by: Alexis Laferrière Reviewed-by: Jean Privat --- 23dfa0eaac7e7c6bb1452e0314e2261807d54854