Removed old comment

master
Aadhavan Srinivasan 2 weeks ago
parent efab70f9dc
commit 2937f2d917

@ -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 // Replace ESC_BACKSLASH with actual backslash, so that we can actually check if we encounter it
replaceByValue([]int(state.content), int(ESC_BACKSLASH), '\\') replaceByValue([]int(state.content), int(ESC_BACKSLASH), '\\')
// Uncommenting this seems to make one of the test cases fail. Why?
replaceByValue(state.except, ESC_BACKSLASH, '\\') replaceByValue(state.except, ESC_BACKSLASH, '\\')
nfa = append(nfa, &state) nfa = append(nfa, &state)

Loading…
Cancel
Save