2018-12-04 08:20:37 +01:00
|
|
|
// 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.
|
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
2018-12-04 08:20:37 +01:00
|
|
|
|
|
|
|
// Instantiate a throwing module.
|
|
|
|
var builder = new WasmModuleBuilder();
|
2021-09-17 14:34:02 +02:00
|
|
|
builder.addTag(kSig_v_v);
|
2018-12-04 08:20:37 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-09-17 14:34:02 +02:00
|
|
|
// Check that the exception is an instance of WebAssembly.Exception and
|
2018-12-04 08:20:37 +01:00
|
|
|
// that no extraneous properties exist. Setting such properties could be
|
|
|
|
// observable by JavaScript and could break compatibility.
|
2021-09-17 14:34:02 +02:00
|
|
|
assertInstanceof(exception, WebAssembly.Exception);
|
2022-09-21 13:28:42 +02:00
|
|
|
assertArrayEquals([], Object.getOwnPropertyNames(exception));
|