v8/test/mjsunit/harmony/sloppy-no-duplicate-async.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

31 lines
719 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-async-await
// Async functions don't get sloppy-mode block-scoped function hoisting
// No hoisting to the global scope
{
async function foo() {}
assertEquals('function', typeof foo);
}
assertEquals('undefined', typeof foo);
// No hoisting within a function scope
(function() {
{ async function bar() {} }
assertEquals('undefined', typeof bar);
})();
// Lexical shadowing allowed, no hoisting
(function() {
var y;
async function x() { y = 1; }
{ async function x() { y = 2; } }
x();
assertEquals(1, y);
})();