This page was translated from English by the community. Learn more and join the MDN Web Docs community.
WebAssembly.CompileError()
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2017년 10월.
**WebAssembly.CompileError()**생성자는 WebAssembly 디코딩 또는 유효성 검사 중에 발생한 오류를 나타내는 WebAssembly CompileError 객체를 새로 만듭니다.
Syntax
new WebAssembly.CompileError(message, fileName, lineNumber);
Parameters
messageOptional-
사람이 읽을수 있는 형태의 에러에 대한 설명.
fileNameOptional 비표준-
예외의 원인이 된 코드가 들어있는 파일의 이름입니다.
lineNumberOptional 비표준-
예외의 원인이 된 코드의 행 번호입니다.
Properties
CompileError 생성자에는 고유 한 고유 속성이 없지만 프로토 타입 체인을 통해 일부 속성을 상속합니다.
WebAssembly.CompileError.prototype.constructor-
인스턴스의 프로토 타입을 작성한 함수를 지정합니다.
WebAssembly.CompileError.prototype.message-
에러 메시지. ECMA-262는
URIError가 SpiderMonkey에서 자체message속성을 제공하도록 지정했지만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에서 상속합니다.
Methods
CompileError 생성자에는 자체 메서드가 없지만 프로토 타입 체인을 통해 일부 메서드를 상속합니다.
WebAssembly.CompileError.prototype.toSource()-
동일한 오류로 판단할 수 있는 코드를 반환합니다.
Error에서 상속합니다. WebAssembly.CompileError.prototype.toString()-
지정된 Error 객체를 나타내는 문자열을 반환합니다.
Error에서 상속합니다.
Examples
다음 스 니펫은 새 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); // returns the location where the code was run
}
명세서
| Specification |
|---|
| WebAssembly JavaScript Interface> # exceptiondef-compileerror> |
| ECMAScript® 2026 Language Specification> # sec-native-error-types-used-in-this-standard> |
브라우저 호환성
Loading...