Skip to content
Snippets Groups Projects
Commit 628faa5e authored by Rick Waldron's avatar Rick Waldron
Browse files

Eliminate false positives: Object.fromEntries

parent 2e18327a
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,7 @@ var iterable = {
},
};
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries(iterable);
});
......
......@@ -49,6 +49,7 @@ var iterable = {
},
};
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries(iterable);
});
......
......@@ -45,6 +45,7 @@ var iterable = {
},
};
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries(iterable);
});
......@@ -36,6 +36,7 @@ var iterable = {
},
};
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries(iterable);
});
......@@ -14,6 +14,7 @@ info: |
features: [Object.fromEntries]
---*/
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries();
});
......@@ -7,6 +7,7 @@ esid: sec-object.fromentries
features: [Object.fromEntries]
---*/
assert.sameValue(typeof Object.fromEntries, 'function');
assert.throws(TypeError, function() {
Object.fromEntries(['ab']);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment