From 2937f2d917925e21c0b9e0816def6575a3adeccd Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Wed, 22 Jan 2025 20:27:35 -0500 Subject: [PATCH] Removed old comment --- compile.go | 1 - 1 file changed, 1 deletion(-) diff --git a/compile.go b/compile.go index 5aa0a5c..14b6b1e 100644 --- a/compile.go +++ b/compile.go @@ -703,7 +703,6 @@ func thompson(re []postfixNode) (Reg, error) { // Replace ESC_BACKSLASH with actual backslash, so that we can actually check if we encounter it replaceByValue([]int(state.content), int(ESC_BACKSLASH), '\\') - // Uncommenting this seems to make one of the test cases fail. Why? replaceByValue(state.except, ESC_BACKSLASH, '\\') nfa = append(nfa, &state)