oxc-parser 0.74.0 → 0.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187,7 +187,8 @@ const NODE_TYPE_IDS_MAP = new Map([
187
187
  ['JSDocNonNullableType', 177],
188
188
  ]);
189
189
 
190
- // Number of AST node types which are leaf nodes
191
- const LEAF_NODES_COUNT = 38;
192
-
193
- module.exports = { NODE_TYPE_IDS_MAP, LEAF_NODES_COUNT };
190
+ module.exports = {
191
+ NODE_TYPE_IDS_MAP,
192
+ NODE_TYPES_COUNT: 178,
193
+ LEAF_NODE_TYPES_COUNT: 38,
194
+ };