27a517b892
Also introduce a separate error type for WebAssembly.Exception, since the properties should not be added to RuntimeError. R=jkummerow@chromium.org Bug: v8:11992 Change-Id: I8f4ae0da9a95184366e07dc43e58a5a9ff4382ae Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3055304 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Commit-Queue: Thibaud Michaud <thibaudm@chromium.org> Cr-Commit-Position: refs/heads/master@{#76061}
30 lines
955 B
JavaScript
30 lines
955 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-wasm --experimental-wasm-eh
|
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
// Instantiate a throwing module.
|
|
var builder = new WasmModuleBuilder();
|
|
builder.addTag(kSig_v_v);
|
|
builder.addFunction("propel", kSig_v_v)
|
|
.addBody([kExprThrow, 0])
|
|
.exportFunc();
|
|
var instance = builder.instantiate();
|
|
|
|
// Catch the exception.
|
|
var exception;
|
|
try {
|
|
instance.exports.propel();
|
|
} catch (e) {
|
|
exception = e;
|
|
}
|
|
|
|
// Check that the exception is an instance of WebAssembly.Exception and
|
|
// that no extraneous properties exist. Setting such properties could be
|
|
// observable by JavaScript and could break compatibility.
|
|
assertInstanceof(exception, WebAssembly.Exception);
|
|
assertArrayEquals(["stack", "message"], Object.getOwnPropertyNames(exception));
|