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.
- package/README.md +11 -0
- package/bindings.js +0 -3
- package/generated/deserialize/js.js +287 -287
- package/generated/deserialize/lazy-types.js +5 -4
- package/generated/deserialize/ts.js +300 -300
- package/index.d.ts +8 -68
- package/index.js +0 -1
- package/package.json +17 -17
- package/raw-transfer/node-array.js +101 -81
- package/raw-transfer/visitor.js +7 -5
|
@@ -187,7 +187,8 @@ const NODE_TYPE_IDS_MAP = new Map([
|
|
|
187
187
|
['JSDocNonNullableType', 177],
|
|
188
188
|
]);
|
|
189
189
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
190
|
+
module.exports = {
|
|
191
|
+
NODE_TYPE_IDS_MAP,
|
|
192
|
+
NODE_TYPES_COUNT: 178,
|
|
193
|
+
LEAF_NODE_TYPES_COUNT: 38,
|
|
194
|
+
};
|