mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Test for parameters with default expressions in Annex B FiB tests
Resolves gh-860
This commit is contained in:
parent
da3898d707
commit
60303b9f07
28
src/annex-b-fns/func-skip-dft-param.case
Normal file
28
src/annex-b-fns/func-skip-dft-param.case
Normal file
@ -0,0 +1,28 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
desc: >
|
||||
Extension not observed when there is a default parameter with the same name
|
||||
template: func
|
||||
info: |
|
||||
B.3.3.1 Changes to FunctionDeclarationInstantiation
|
||||
|
||||
[...]
|
||||
ii. If replacing the FunctionDeclaration f with a VariableStatement that
|
||||
has F as a BindingIdentifier would not produce any Early Errors for
|
||||
func and F is not an element of BoundNames of argumentsList, then
|
||||
[...]
|
||||
---*/
|
||||
|
||||
//- setup
|
||||
var init, after;
|
||||
//- params
|
||||
f = 123
|
||||
//- before
|
||||
init = f;
|
||||
//- after
|
||||
after = f;
|
||||
//- teardown
|
||||
assert.sameValue(init, 123, 'binding is not initialized to `undefined`');
|
||||
assert.sameValue(after, 123, 'value is not updated following evaluation');
|
Loading…
x
Reference in New Issue
Block a user