metro-source-map 0.83.2 → 0.83.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metro-source-map",
3
- "version": "0.83.2",
3
+ "version": "0.83.3",
4
4
  "description": "🚇 Source map generator for Metro.",
5
5
  "main": "src/source-map.js",
6
6
  "exports": {
@@ -22,9 +22,9 @@
22
22
  "@babel/types": "^7.25.2",
23
23
  "flow-enums-runtime": "^0.0.6",
24
24
  "invariant": "^2.2.4",
25
- "metro-symbolicate": "0.83.2",
25
+ "metro-symbolicate": "0.83.3",
26
26
  "nullthrows": "^1.1.1",
27
- "ob1": "0.83.2",
27
+ "ob1": "0.83.3",
28
28
  "source-map": "^0.5.6",
29
29
  "vlq": "^1.0.0"
30
30
  },
@@ -307,6 +307,8 @@ function getNameForPath(path: NodePath<>): string {
307
307
  // We couldn't find a name directly. Try the parent in certain cases.
308
308
  if (isAnyCallExpression(parent)) {
309
309
  // foo(function () {})
310
+ /* $FlowFixMe[incompatible-type] Error exposed after improved typing of
311
+ * Array.{includes,indexOf,lastIndexOf} */
310
312
  const argIndex = parent.arguments.indexOf(node);
311
313
  if (argIndex !== -1) {
312
314
  const calleeName = getNameFromId(parent.callee);