tamer: xir::flat::parse_token: Remove now-unapplicable comment

Forgot to delete this in a previous commit.

DEV-10863
main
Mike Gerwitz 2022-03-17 21:37:05 -04:00
parent aba89f809d
commit f04d845452
1 changed files with 0 additions and 5 deletions

View File

@ -154,11 +154,6 @@ where
use ParseStatus::{Dead, Incomplete, Object as Obj};
use State::{AttrExpected, NodeExpected};
// This awkward-looking take-reassign forces us to be explicit
// about state transitions in every case,
// ensuring that we always have documented proof of what state
// the system winds up in.
// The `Invalid` state prevents using `return`.
match (self, tok) {
(NodeExpected(stack), tok) => Self::parse_node(stack, tok),