You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to this commit, the lexer used arrays of sequential characters
(0-9, a-z, A-Z) by explicitly naming each character in the array (e.g.
"['0', '1', '2']").
This commit simplifies those arrays to use ranges (e.g. "('0'..'9')")
instead.
0 commit comments