2017-02-01 14:06:38 +00:00
|
|
|
// Copyright 2017 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: --allow-natives-syntax
|
|
|
|
|
|
|
|
let success = false;
|
|
|
|
function f() {
|
2017-06-23 16:12:04 +00:00
|
|
|
success = (f.caller === null);
|
2017-02-01 14:06:38 +00:00
|
|
|
}
|
|
|
|
Promise.resolve().then(f);
|
|
|
|
%RunMicrotasks();
|
|
|
|
assertTrue(success);
|