File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class CodePoint private (val intValue:Int) {
22
22
def isBmp : Boolean = Character .isBmpCodePoint(intValue)
23
23
def isDefined : Boolean = Character .isDefined(intValue)
24
24
def isDigit : Boolean = Character .isDigit(intValue)
25
- def isIdentifierIgnorable : Boolean = Character .isDigit (intValue)
25
+ def isIdentifierIgnorable : Boolean = Character .isIdentifierIgnorable (intValue)
26
26
def isIdeographic : Boolean = Character .isIdeographic(intValue)
27
27
def isISOControl : Boolean = Character .isISOControl(intValue)
28
28
def isJavaIdentifierPart : Boolean = Character .isJavaIdentifierPart(intValue)
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] ( https://github.com/rayrobdod/string-context-parser-combinator/compare/0.1.1...HEAD )
4
4
* Improve performance of ` codePointWhere ` and ` charWhere ` if default error message is not needed
5
+ * Fix ` CodePoint::isIdentifierIgnorable ` to forward to the correct ` j.l.Character ` method
5
6
6
7
## [ 0.1.1] ( https://github.com/rayrobdod/string-context-parser-combinator/compare/0.1.0...0.1.1 ) – 2025-02-04
7
8
* Add symbolic operators to Parser, Extractor and Interpolator
You can’t perform that action at this time.
0 commit comments