From 9115858261a7409107ef68a68a5e402c23b5cf74 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Mon, 20 Jan 2025 17:08:07 -0500 Subject: [PATCH] Changed assignment of the unicode values by 1, so that EPSILON can now be 0xF0000 --- misc.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/misc.go b/misc.go index 30f0e95..828bf91 100644 --- a/misc.go +++ b/misc.go @@ -8,12 +8,12 @@ import ( var whitespaceChars = []rune{' ', '\t', '\n'} var digitChars = []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'} var wordChars = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_") -var LBRACKET rune = 0xF0000 -var RBRACKET rune = 0xF0001 -var ANY_CHAR rune = 0xF0002 // Represents any character - used for states where the allChars flag is on. -var LPAREN_CHAR rune = 0xF0003 // Parentheses in regex are concatenated with this - it acts as a pseudio-parentheses -var RPAREN_CHAR rune = 0xF0004 -var NONCAPLPAREN_CHAR rune = 0xF0005 // Represents a non-capturing group's LPAREN +var LBRACKET rune = 0xF0001 +var RBRACKET rune = 0xF0002 +var ANY_CHAR rune = 0xF0003 // Represents any character - used for states where the allChars flag is on. +var LPAREN_CHAR rune = 0xF0004 // Parentheses in regex are concatenated with this - it acts as a pseudio-parentheses +var RPAREN_CHAR rune = 0xF0005 +var NONCAPLPAREN_CHAR rune = 0xF0006 // Represents a non-capturing group's LPAREN // Returns true if str[idx] and str[idx-1] are separated by a word boundary. func isWordBoundary(str []rune, idx int) bool {