Remove panic for unreached statement

This commit is contained in:
Derek Collison
2013-07-30 18:27:03 -07:00
parent c07bca3144
commit 87f6443b7f

View File

@@ -93,7 +93,6 @@ func (lx *lexer) nextItem() item {
lx.state = lx.state(lx)
}
}
panic("not reached")
}
func lex(input string) *lexer {