mirror of
https://github.com/tc39/test262.git
synced 2025-07-26 23:44:27 +02:00
Math.max/min - each element coerced
This commit is contained in:
parent
c898b68ef6
commit
c1959a44a6
21
test/built-ins/Math/max/Math.max_each-element-coerced.js
Normal file
21
test/built-ins/Math/max/Math.max_each-element-coerced.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright (C) 2020 Vladislav Lazurenko. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-math.max
|
||||||
|
description: Call ToNumber on each element of params
|
||||||
|
info: |
|
||||||
|
2. For each element arg of args, do
|
||||||
|
Let n be ? ToNumber(arg).
|
||||||
|
Append n to coerced.
|
||||||
|
---*/
|
||||||
|
|
||||||
|
let valueOf_calls = 0;
|
||||||
|
|
||||||
|
const n = {
|
||||||
|
valueOf: function() {
|
||||||
|
valueOf_calls++;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Math.max(NaN, n);
|
||||||
|
assert.sameValue(valueOf_calls, 1);
|
21
test/built-ins/Math/min/Math.min_each-element-coerced.js
Normal file
21
test/built-ins/Math/min/Math.min_each-element-coerced.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright (C) 2020 Vladislav Lazurenko. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-math.min
|
||||||
|
description: Call ToNumber on each element of params
|
||||||
|
info: |
|
||||||
|
2. For each element arg of args, do
|
||||||
|
Let n be ? ToNumber(arg).
|
||||||
|
Append n to coerced.
|
||||||
|
---*/
|
||||||
|
|
||||||
|
let valueOf_calls = 0;
|
||||||
|
|
||||||
|
const n = {
|
||||||
|
valueOf: function() {
|
||||||
|
valueOf_calls++;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Math.min(NaN, n);
|
||||||
|
assert.sameValue(valueOf_calls, 1);
|
Loading…
x
Reference in New Issue
Block a user