mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
Deprecate a..b based ranges in favour of ..=
This commit is contained in:
@@ -198,7 +198,7 @@ is_valid_identifier_rune :: proc(r: rune) -> bool {
|
||||
switch r {
|
||||
case '_', '-', ':': return true
|
||||
case 'A'..='Z', 'a'..='z': return true
|
||||
case '0'..'9': return true
|
||||
case '0'..='9': return true
|
||||
case -1: return false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user