mirror of https://github.com/tc39/test262.git
Math.max/min - each element coerced
This commit is contained in:
parent
c898b68ef6
commit
c1959a44a6
|
@ -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);
|
|
@ -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…
Reference in New Issue