[kotlin mode]: Fix unsigned long literal token #14295
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "github/fork/flofriday/master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From the Kotlin Spec section 1.2.3 Literals there are only 3 Rules that define suffixes for literals:
Ignoring casesensitivity we can catch them all with the regex
(ul?|l|f)however the current regex for Kotlin suffixes looks like(u|ll?|l|f)which leads to the following inconsistency:Merged by: marijnh at 2025-08-21 13:03:25 UTC