oxc/npm/oxc-types
overlookmotel c335f92ada perf(syntax): reorder operator enum variants (#7351)
Re-order enum variants of `AssignmentOperator`, `BinaryOperator` and `UnaryOperator`.

* `Exponential` moved to after `Remainder` (so with the rest of the arithmetic operators).
* `Shift*` operators follow arithmetic operators.
* `AssignmentOperator::Bitwise*` ops moved to before `Logical*` ops (so all ops which correspond to `BinaryOperator`s are together).
* `*Or` always before `*And`.
* Plus/Addition always before Minus/Subtraction.

The purpose is to make the various methods on these types maximally efficient:

1. Group together variants so that `AssignmentOperator::is_*` methods can be executed with the minimum number of operations (essentially `variant - min <= max`).
2. Align the variants of `AssignmentOperator` and `BinaryOperator` so that conversion methods added in #7350 become very cheap too (essentially `if variant - min <= max { Some(variant + offset) } else { None }`).
2024-11-19 01:23:28 +00:00
..
CHANGELOG.md release(crates): v0.36.0 (#7227) 2024-11-10 00:31:14 +08:00
package.json release(crates): v0.36.0 (#7227) 2024-11-10 00:31:14 +08:00
README.md feat(ast_tools): output typescript to a separate package (#6755) 2024-10-24 13:08:57 +00:00
types.d.ts perf(syntax): reorder operator enum variants (#7351) 2024-11-19 01:23:28 +00:00

Oxc Types

Typescript definitions for Oxc AST nodes.