From 9d82785f46949151b783d83648b39ce9ba40c615 Mon Sep 17 00:00:00 2001 From: Charlie Stanton Date: Sat, 30 Mar 2024 09:42:00 +0000 Subject: Add none structures and allow mismatched destructuring --- subex/main.go | 1 - 1 file changed, 1 deletion(-) (limited to 'subex/main.go') diff --git a/subex/main.go b/subex/main.go index 86a8d41..f8d9093 100644 --- a/subex/main.go +++ b/subex/main.go @@ -276,7 +276,6 @@ func processInput(states []SubexEatBranch, input walk.Edible, nesting int) []Sub newStates := make([]SubexEatBranch, 0, 2) for _, state := range states { - // TODO: What if nesting is changed by an epsilon state? if state.aux.nesting == nesting { newStates = addStates(newStates, state.eat(input)) } else if state.aux.nesting < nesting { -- cgit v1.2.3