2015-05-19 23:51:59 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
description: >
|
|
|
|
It is a Syntax Error if any element of the BoundNames of
|
|
|
|
StrictFormalParameters also occurs in the LexicallyDeclaredNames of
|
|
|
|
FunctionBody.
|
|
|
|
es6id: 14.3.1
|
2016-01-31 00:57:28 +01:00
|
|
|
negative:
|
|
|
|
phase: early
|
|
|
|
type: SyntaxError
|
2015-05-19 23:51:59 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var obj = {
|
|
|
|
method(param) {
|
|
|
|
let param;
|
|
|
|
}
|
|
|
|
};
|