54 lines
797 B
JavaScript
54 lines
797 B
JavaScript
const _excluded = ["a"],
|
|
_excluded2 = ["a"],
|
|
_excluded3 = ["a"];
|
|
|
|
// ForXStatement
|
|
for (const _ref of []) {
|
|
const [_ref2] = _ref;
|
|
const {
|
|
a
|
|
} = _ref2,
|
|
b = babelHelpers.objectWithoutProperties(_ref2, _excluded);
|
|
}
|
|
|
|
for (var _ref3 of []) {
|
|
[_ref4] = _ref3;
|
|
var {
|
|
a
|
|
} = _ref4,
|
|
b = babelHelpers.objectWithoutProperties(_ref4, _excluded2);
|
|
}
|
|
|
|
async function a() {
|
|
for await (var _ref5 of []) {
|
|
[_ref6] = _ref5;
|
|
var {
|
|
a
|
|
} = _ref6,
|
|
b = babelHelpers.objectWithoutProperties(_ref6, _excluded3);
|
|
}
|
|
} // skip
|
|
|
|
|
|
for ([{
|
|
a
|
|
}] in {}) {}
|
|
|
|
for ([{
|
|
a
|
|
}] of []) {}
|
|
|
|
async function a() {
|
|
for await ([{
|
|
a
|
|
}] of []) {}
|
|
}
|
|
|
|
for ([a, ...b] in {}) {}
|
|
|
|
for ([a, ...b] of []) {}
|
|
|
|
async function a() {
|
|
for await ([a, ...b] of []) {}
|
|
}
|