mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
refactor(parser): re-order match branches (#2209)
Just a tiny bit of code tidying.
This commit is contained in:
parent
9333264428
commit
872d751a18
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue