test262/test/built-ins/isFinite/return-abrupt-from-tonumber...

34 lines
622 B
JavaScript
Raw Normal View History

2016-06-30 17:57:00 +02:00
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 18.2.2
2017-06-29 17:36:13 +02:00
esid: sec-isfinite-number
2016-06-30 17:57:00 +02:00
description: >
Return abrupt completion from ToNumber(number)
info: |
isFinite (number)
1. Let num be ? ToNumber(number).
---*/
var obj1 = {
valueOf: function() {
throw new Test262Error();
}
};
var obj2 = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
isFinite(obj1);
}, "valueOf");
assert.throws(Test262Error, function() {
isFinite(obj2);
}, "toString");