v8/test/mjsunit/regress/regress-crbug-860788.js
Maya Lekova 614c8077c2 [async] Implement error handling when running async hooks
Bug: chromium:860788
Change-Id: I5311cd670b57edf5b63173a10cf84a575e1fcd04
Reviewed-on: https://chromium-review.googlesource.com/1128750
Commit-Queue: Maya Lekova <mslekova@chromium.org>
Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#54343}
2018-07-10 08:12:09 +00:00

31 lines
816 B
JavaScript

// 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: --expose-async-hooks
try {
Object.prototype.__defineGetter__(0, function(){});
assertThrows("x");
} catch(e) { print("Caught: " + e); }
try {
(function() {
let asyncIds = [], triggerIds = [];
let ah = async_hooks.createHook({
init(asyncId, type, triggerAsyncId, resource) {
if (type !== 'PROMISE') { return; }
assertThrows("asyncIds.push(asyncId);");
assertThrows("triggerIds.push(triggerAsyncId)");
},
});
ah.enable();
async function foo() {}
foo();
})();
} catch(e) { print("Caught: " + e); }
try {
var obj = {prop: 7};
assertThrows("nonexistant(obj)");
} catch(e) { print("Caught: " + e); }