refactor(parser): re-order match branches (#2209)

Just a tiny bit of code tidying.
This commit is contained in:
overlookmotel 2024-01-29 16:53:56 +00:00 committed by GitHub
parent 9333264428
commit 872d751a18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -418,6 +418,7 @@ impl Kind {
"never" => Never, "never" => Never,
"super" => Super, "super" => Super,
"throw" => Throw, "throw" => Throw,
"using" => Using,
"while" => While, "while" => While,
"yield" => Yield, "yield" => Yield,
@ -439,7 +440,6 @@ impl Kind {
"target" => Target, "target" => Target,
"typeof" => Typeof, "typeof" => Typeof,
"unique" => Unique, "unique" => Unique,
"using" => Using,
"asserts" => Asserts, "asserts" => Asserts,
"boolean" => Boolean, "boolean" => Boolean,