--- old/make/data/characterdata/CharacterData01.java.template 2019-08-27 10:57:22.000000000 -0700 +++ new/make/data/characterdata/CharacterData01.java.template 2019-08-27 10:57:22.000000000 -0700 @@ -114,13 +114,14 @@ } boolean isUnicodeIdentifierStart(int ch) { - int props = getProperties(ch); - return ((props & $$maskIdentifierInfo) == $$valueUnicodeStart); + return (getPropertiesEx(ch) & $$maskIDStart) != 0 || + ch == 0x2E2F; } boolean isUnicodeIdentifierPart(int ch) { - int props = getProperties(ch); - return ((props & $$maskUnicodePart) != 0); + return (getPropertiesEx(ch) & $$maskIDContinue) != 0 || + isIdentifierIgnorable(ch) || + ch == 0x2E2F; } boolean isIdentifierIgnorable(int ch) {