remove isKeywordIgnoreCase from highlite, not used , can't even compile with -d:useNimRtl (#18399)

This commit is contained in:
Bung
2021-06-30 13:28:41 +08:00
committed by GitHub
parent 0483a5ffaf
commit 16f0b55664

View File

@@ -188,9 +188,6 @@ const
proc isKeyword(x: openArray[string], y: string): int =
binarySearch(x, y)
proc isKeywordIgnoreCase(x: openArray[string], y: string): int =
binarySearch(x, y, cmpIgnoreCase)
proc nimNextToken(g: var GeneralTokenizer, keywords: openArray[string] = @[]) =
const
hexChars = {'0'..'9', 'A'..'F', 'a'..'f', '_'}