blob: db16833e2dfac09f04cf34b7dd2d429d2d3a354d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-functiondeclarationinstantiation
es6id: 9.2.12
description: >
Arguments are "unmapped" when paramater list is non-simple due to "default"
parameter
info: |
[...]
9. Let simpleParameterList be IsSimpleParameterList of formals.
[...]
22. If argumentsObjectNeeded is true, then
a. If strict is true or if simpleParameterList is false, then
i. Let ao be CreateUnmappedArgumentsObject(argumentsList).
[...]
---*/
var value;
function dflt(a, b = 0) {
arguments[0] = 2;
value = a;
}
dflt(1);
assert.sameValue(value, 1);
reportCompare(0, 0);
|