v8/test/mjsunit/harmony/sloppy-no-duplicate-generators.js
littledan 6390282f96 Improve strictness of Annex B 3.3 for generators and async functions
Annex B 3.3 applies only for ordinary FunctionDeclarations, not
GeneratorDeclarations or AsyncFunctionDeclarations. This patch
- Skips applying Annex B 3.3 to async functions
- Adds a flag to refrain from applying it to generators
- UseCounter for how often duplicate function in block occurs
  with generators (unclear how to measure need for hoisting from block)

BUG=v8:4806

Review-Url: https://codereview.chromium.org/1995863002
Cr-Commit-Position: refs/heads/master@{#36557}
2016-05-27 18:23:20 +00:00

29 lines
707 B
JavaScript

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --harmony-restrictive-generators
// Generators don't get sloppy-mode block-scoped function hoisting
// No hoisting to the global scope
{
function* foo() {}
assertEquals('function', typeof foo);
}
assertEquals('undefined', typeof foo);
// No hoisting within a function scope
(function() {
{ function* bar() {} }
assertEquals('undefined', typeof bar);
})();
// Lexical shadowing allowed, no hoisting
(function() {
function* x() { yield 1; }
{ function* x() { yield 2 } }
assertEquals(1, x().next().value);
})();