Math.max/min - each element coerced

This commit is contained in:
Vlad 2020-12-04 23:03:55 +13:00 committed by Rick Waldron
parent c898b68ef6
commit c1959a44a6
2 changed files with 42 additions and 0 deletions

View 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);

View 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);