WebAssembly.CompileError() - JavaScript 编辑
WebAssembly.CompileError()
构造函数创建一个新的WebAssembly CompileError
对象,该对象表示WebAssembly解码或验证期间的错误。
语法
new WebAssembly.CompileError(message, fileName, lineNumber)
参数
message
可选- 有可读性的错误描述。
fileName
可选- 包含导致异常的代码的文件名。
lineNumber
可选- 导致异常的代码的行号。
属性
CompileError
构造函数没有一些它特有的属性,但是,它确实通过原型链继承了某些属性。
WebAssembly.CompileError.prototype.constructor
- 创建示例原型的特定函数。
WebAssembly.CompileError.prototype.message
- 错误信息。 尽管ECMA-262指定
URIError
应提供自己的message
属性,但在SpiderMonkey中,它继承了Error.prototype.message
。 WebAssembly.CompileError.prototype.name
- 错误名称。继承自
Error
。 WebAssembly.CompileError.prototype.fileName
- 报出错误的文件名。继承自
Error
。 WebAssembly.CompileError.prototype.lineNumber
- 报出错误的代码所在文件中的行数。继承自
Error
。 WebAssembly.CompileError.prototype.columnNumber
- 报出错误的代码所在文件中的列数。继承自
Error
。 WebAssembly.CompileError.prototype.stack
- 堆栈跟踪。 继承自
Error
。
方法
CompileError
构造函数不包含自己的方法,但是,它确实通过原型链继承了一些方法。
WebAssembly.CompileError.prototype.toSource()
- 返回可能导致相同错误的代码。 继承自
Error
。 WebAssembly.CompileError.prototype.toString()
- 返回表示代表指定的
Error
对象的字符串。从Error
继承。
示例
以下代码段创建一个新的CompileError实例,并将其详细信息记录到控制台:
try {
throw new WebAssembly.CompileError('Hello', 'someFile', 10);
} catch (e) {
console.log(e instanceof CompileError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "CompileError"
console.log(e.fileName); // "someFile"
console.log(e.lineNumber); // 10
console.log(e.columnNumber); // 0
console.log(e.stack); // 返回代码运行的位置
}
规范
Specification | Status | Comment |
---|---|---|
WebAssembly JavaScript Interface WebAssembly constructors | Working Draft | Initial WebAssembly draft definition. |
ECMAScript (ECMA-262) NativeError | Living Standard | Definition 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论