async-stack-traces-prepare-stacktrace-4.js 1.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Copyright 2018 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: --async-stack-traces

// Check that Error.prepareStackTrace properly exposes async
// stack frames and special Promise.all() stack frames.
Error.prepareStackTrace = (e, frames) => {
  assertEquals(two, frames[0].getFunction());
  assertEquals(two.name, frames[0].getFunctionName());
12
  assertEquals(null, frames[0].getPromiseIndex());
13 14
  assertFalse(frames[0].isAsync());
  assertEquals(Promise.all, frames[1].getFunction());
15
  assertEquals(0, frames[1].getPromiseIndex());
16 17 18 19
  assertTrue(frames[1].isAsync());
  assertTrue(frames[1].isPromiseAll());
  assertEquals(one, frames[2].getFunction());
  assertEquals(one.name, frames[2].getFunctionName());
20
  assertEquals(null, frames[2].getPromiseIndex());
21
  assertTrue(frames[2].isAsync());
22
  assertFalse(frames[2].isPromiseAll());
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  return frames;
};

async function one(x) {
  return await Promise.all([two(x)]);
}

async function two(x) {
  try {
    x = await x;
    throw new Error();
  } catch (e) {
    return e.stack;
  }
}

one(1).catch(e => setTimeout(_ => {throw e}, 0));