(int c)
| 493 | } |
| 494 | |
| 495 | private boolean isIdentifierStart(int c) { |
| 496 | return (Character.isLetter(c) || Character.getType(c) == Character.LETTER_NUMBER || c == '$' || c == '_' || (isUnicodeEscapeSequence(c) && !isNonEscapeSequence(c))); |
| 497 | } |
| 498 | |
| 499 | private boolean isIdentifierPart(int c) { |
| 500 | if (isIdentifierStart(c)) { |
no test coverage detected