Skip to content

Commit a853d6a

Browse files
committed
Fix CodePoint::isIdentifierIgnorable to forward to the correct j.l.Character method
1 parent 2c0cf2a commit a853d6a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Base/src/main/scala/CodePoint.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final class CodePoint private (val intValue:Int) {
2222
def isBmp:Boolean = Character.isBmpCodePoint(intValue)
2323
def isDefined:Boolean = Character.isDefined(intValue)
2424
def isDigit:Boolean = Character.isDigit(intValue)
25-
def isIdentifierIgnorable:Boolean = Character.isDigit(intValue)
25+
def isIdentifierIgnorable:Boolean = Character.isIdentifierIgnorable(intValue)
2626
def isIdeographic:Boolean = Character.isIdeographic(intValue)
2727
def isISOControl:Boolean = Character.isISOControl(intValue)
2828
def isJavaIdentifierPart:Boolean = Character.isJavaIdentifierPart(intValue)

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [Unreleased](https://github.com/rayrobdod/string-context-parser-combinator/compare/0.1.1...HEAD)
44
* 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
56

67
## [0.1.1](https://github.com/rayrobdod/string-context-parser-combinator/compare/0.1.0...0.1.1) – 2025-02-04
78
* Add symbolic operators to Parser, Extractor and Interpolator

0 commit comments

Comments
 (0)