WebAssembly.RuntimeError() - JavaScript 编辑

WebAssembly.RuntimeError()构造函数创建一个新的WebAssembly RuntimeError对象---一个每当WebAssembly陷入指定陷阱时将抛出的类型。

语法

new WebAssembly.RuntimeError(message, fileName, lineNumber)

参数

message 可选
有可读性的错误信息。
fileName 可选
包含导致异常的代码的文件名。
lineNumber 可选
导致异常的代码的行号。

属性

RuntimeError构造函数不包含其自身特有的属性,但是,它确实通过原型链继承了某些属性。

WebAssembly.RuntimeError.prototype.constructor
创建示例原型的特定函数。
WebAssembly.RuntimeError.prototype.message
错误信息。 尽管ECMA-262指定URIError应提供自己的message属性,但在SpiderMonkey中,它继承了Error.prototype.message
WebAssembly.RuntimeError.prototype.name
错误名称。继承自 Error.
WebAssembly.RuntimeError.prototype.fileName
报出错误的文件路径。继承自 Error.
WebAssembly.RuntimeError.prototype.lineNumber
报出错误的代码所在文件中的行数。继承自Error.
WebAssembly.RuntimeError.prototype.columnNumber
报出错误的代码所在文件中的列数。继承自 Error.
WebAssembly.RuntimeError.prototype.stack
堆栈跟踪。 继承自 Error.

方法

RuntimeError构造函数不包含自己的方法,但是,它确实通过原型链继承了一些方法。

WebAssembly.RuntimeError.prototype.toSource()
返回可能导致相同错误的代码。 继承自Error.
WebAssembly.RuntimeError.prototype.toString()
返回表示代表指定的Error对象的字符串。从Error.

样例

以下代码段创建了一个新的RuntimeError实例,并将其详细信息记录到控制台:

try {
  throw new WebAssembly.RuntimeError('Hello', 'someFile', 10);
} catch (e) {
  console.log(e instanceof RuntimeError); // true
  console.log(e.message);                 // "Hello"
  console.log(e.name);                    // "RuntimeError"
  console.log(e.fileName);                // "someFile"
  console.log(e.lineNumber);              // 10
  console.log(e.columnNumber);            // 0
  console.log(e.stack);                   // 返回代码运行的位置
}

规范

SpecificationStatusComment
WebAssembly JavaScript Interface
WebAssembly constructors
Working DraftInitial WebAssembly draft definition.
ECMAScript (ECMA-262)
NativeError
Living StandardDefinition of standard NativeError types.

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:86 次

字数:6483

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文