<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/subex/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'subex/main.go')
-rw-r--r--subex/main.go1
1 files changed, 0 insertions, 1 deletions
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 {