mol_view_tree2_lib 1.0.202 → 1.0.203
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/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.mjs +1 -1
- package/web.test.js.map +1 -1
package/node.mjs
CHANGED
|
@@ -2070,7 +2070,7 @@ var $;
|
|
|
2070
2070
|
normal = normal.substring(0, next + 1);
|
|
2071
2071
|
if (node.type === normal)
|
|
2072
2072
|
return [node.clone(node.hack(belt))];
|
|
2073
|
-
console.warn(`Syntax ${node.type} is deprecated. Use ${normal} instead`);
|
|
2073
|
+
console.warn(`Syntax ${node.type} at ${node.span} is deprecated. Use ${normal} instead`);
|
|
2074
2074
|
return [node.struct(normal, node.hack(belt))];
|
|
2075
2075
|
}
|
|
2076
2076
|
}));
|
package/node.test.js
CHANGED
|
@@ -2061,7 +2061,7 @@ var $;
|
|
|
2061
2061
|
normal = normal.substring(0, next + 1);
|
|
2062
2062
|
if (node.type === normal)
|
|
2063
2063
|
return [node.clone(node.hack(belt))];
|
|
2064
|
-
console.warn(`Syntax ${node.type} is deprecated. Use ${normal} instead`);
|
|
2064
|
+
console.warn(`Syntax ${node.type} at ${node.span} is deprecated. Use ${normal} instead`);
|
|
2065
2065
|
return [node.struct(normal, node.hack(belt))];
|
|
2066
2066
|
}
|
|
2067
2067
|
}));
|