< prev index next >

make/data/characterdata/CharacterDataLatin1.java.template

Print this page
rev 56092 : imported patch 8229831

*** 1,7 **** /* ! * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 131,147 **** int props = getProperties(ch); return ((props & $$nonzeroJavaPart) != 0); } boolean isUnicodeIdentifierStart(int ch) { ! int props = getProperties(ch); ! return ((props & $$maskIdentifierInfo) == $$valueUnicodeStart); } boolean isUnicodeIdentifierPart(int ch) { ! int props = getProperties(ch); ! return ((props & $$maskUnicodePart) != 0); } boolean isIdentifierIgnorable(int ch) { int props = getProperties(ch); return ((props & $$maskIdentifierInfo) == $$valueIgnorable); --- 131,148 ---- int props = getProperties(ch); return ((props & $$nonzeroJavaPart) != 0); } boolean isUnicodeIdentifierStart(int ch) { ! return (getPropertiesEx(ch) & $$maskIDStart) != 0 || ! ch == 0x2E2F; } boolean isUnicodeIdentifierPart(int ch) { ! return (getPropertiesEx(ch) & $$maskIDContinue) != 0 || ! isIdentifierIgnorable(ch) || ! ch == 0x2E2F; } boolean isIdentifierIgnorable(int ch) { int props = getProperties(ch); return ((props & $$maskIdentifierInfo) == $$valueIgnorable);
< prev index next >