blob: 9cb022a362a99f4b5e3e63f7863c9344ad7afed1 [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 String objects
---*/
assert.throws(TypeError, () => {
var s1 = new String();
s1.valueOf = Boolean.prototype.valueOf;
s1.valueOf();
});
assert.throws(TypeError, () => {
var s2 = new String();
s2.myvalueOf = Boolean.prototype.valueOf;
s2.myvalueOf();
});