blob: 34a87831a1335d9b6d6e4d4a3f26b0f8e0e0dbfd [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
The valueOf function is not generic, it cannot be transferred
to other kinds of objects for use as a method and there is should be
a TypeError exception if its this value is not a Boolean object
esid: sec-boolean.prototype.valueof
description: transferring to the other objects
---*/
assert.throws(TypeError, () => {
var s1 = {
x: 1
};
s1.valueOf = Boolean.prototype.valueOf;
s1.valueOf();
});
assert.throws(TypeError, () => {
var s2 = {
x: 1
};
s2.myvalueOf = Boolean.prototype.valueOf;
s2.myvalueOf();
});