From 09972c2ea21cefc72017cf98554bbb82dd2edf58 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 7 Sep 2021 22:50:36 +0900 Subject: Global_Objects/WebAssembly/RuntimeError を更新 (#2284) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Markdownに変換 - 2021/08/31 時点の英語版に同期 - コンストラクターは新規翻訳 --- .../webassembly/runtimeerror/index.html | 107 --------------------- .../webassembly/runtimeerror/index.md | 77 +++++++++++++++ .../webassembly/runtimeerror/runtimeerror/index.md | 66 +++++++++++++ 3 files changed, 143 insertions(+), 107 deletions(-) delete mode 100644 files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.html create mode 100644 files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.md create mode 100644 files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/runtimeerror/index.md (limited to 'files/ja') diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.html b/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.html deleted file mode 100644 index 9b0b408383..0000000000 --- a/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.html +++ /dev/null @@ -1,107 +0,0 @@ ---- -title: WebAssembly.RuntimeError() -slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError -translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError ---- -
{{JSRef}} {{SeeCompatTable}}
- -

WebAssembly.RuntimeError() コンストラクタは WebAssembly RuntimeError オブジェクトを生成します。WebAssembly で定義されている トラップ が発生するごとにスローされます。

- -

構文

- -
new WebAssembly.RuntimeError(message, fileName, lineNumber)
- -

パラメータ

- -
-
message {{optional_inline}}
-
ヒューマンリーダブルなエラーの説明。
-
fileName {{optional_inline}}{{non-standard_inline}}
-
例外の原因となったコードを含むファイルの名前。
-
lineNumber {{optional_inline}}{{non-standard_inline}}
-
例外の原因となったコードの行番号。
-
- -

プロパティ

- -

RuntimeError コンストラクタは自身のプロパティを持ちませんが、プロトタイプチェーンを通していくつかのプロパティを継承します。

- -
-
WebAssembly.RuntimeError.prototype.constructor
-
インスタンスのプロトタイプを生成した関数を示します。
-
{{jsxref("Error.prototype.message", "WebAssembly.RuntimeError.prototype.message")}}
-
エラーメッセージ。ECMA-262 では {{jsxref("URIError")}} は自身の message プロパティを提供する必要がありますが、SpiderMonkey では {{jsxref("Error.prototype.message")}} を継承します。
-
{{jsxref("Error.prototype.name", "WebAssembly.RuntimeError.prototype.name")}}
-
エラー名。 {{jsxref("Error")}}.
-
{{jsxref("Error.prototype.fileName", "WebAssembly.RuntimeError.prototype.fileName")}}
-
このエラーを発生させたファイルのパス。{{jsxref("Error")}} から継承されます。
-
{{jsxref("Error.prototype.lineNumber", "WebAssembly.RuntimeError.prototype.lineNumber")}}
-
このエラーを発生させたファイルの行番号。{{jsxref("Error")}} から継承されます。
-
{{jsxref("Error.prototype.columnNumber", "WebAssembly.RuntimeError.prototype.columnNumber")}}
-
このエラーが発生した行の列番号。Error から継承されます。{{jsxref("Error")}} から継承されます。
-
{{jsxref("Error.prototype.stack", "WebAssembly.RuntimeError.prototype.stack")}}
-
スタックトレース。{{jsxref("Error")}} から継承されます。
-
- -

メソッド

- -

RuntimeError コンストラクタは自身のメソッドを持ちませんが、プロトタイプチェーンを通していくつかのメソッドを継承します。

- -
-
{{jsxref("Error.prototype.toSource", "WebAssembly.RuntimeError.prototype.toSource()")}}
-
同じエラーを評価できるコードを返します。{{jsxref("Error")}} から継承されます。
-
{{jsxref("Error.prototype.toString", "WebAssembly.RuntimeError.prototype.toString()")}}
-
指定された Error オブジェクトを表す文字列を返します。{{jsxref("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);                   // コードが実行された場所を返す
-}
- -

仕様

- - - - - - - - - - - - - - - - - - - - - -
仕様策定状況コメント
{{SpecName('WebAssembly JS', '#constructor-properties-of-the-webassembly-object', 'WebAssembly constructors')}}{{Spec2('WebAssembly JS')}}WebAssembly の初回ドラフト定義。
{{SpecName('ESDraft', '#sec-native-error-types-used-in-this-standard', 'NativeError')}}{{Spec2('ESDraft')}}標準の NativeError 型の定義。
- -

ブラウザ実装状況

- -
{{Compat("javascript.builtins.WebAssembly.RuntimeError")}}
- -

関連情報

- - diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.md b/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.md new file mode 100644 index 0000000000..9919812d76 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/index.md @@ -0,0 +1,77 @@ +--- +title: WebAssembly.RuntimeError +slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError +tags: + - API + - Class + - JavaScript + - Reference + - RuntimeError + - WebAssembly +browser-compat: javascript.builtins.WebAssembly.RuntimeError +translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError +--- +{{JSRef}} + +**`WebAssembly.RuntimeError`** オブジェクトは、 WebAssembly が[トラップ](https://webassembly.org/docs/semantics/#traps)を指定するたびに例外として発生するエラー型です。 + +## コンストラクター + +- [`WebAssembly.RuntimeError()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError) + - : 新しい `WebAssembly.RuntimeError` オブジェクトを生成します。 + +## インスタンスプロパティ + +- {{jsxref("Error.prototype.message", "WebAssembly.RuntimeError.prototype.message")}} + - : エラーメッセージ。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.name", "WebAssembly.RuntimeError.prototype.name")}} + - : エラー名。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.fileName", "WebAssembly.RuntimeError.prototype.fileName")}} + - : このエラーを発生させたファイルのパス。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.lineNumber", "WebAssembly.RuntimeError.prototype.lineNumber")}} + - : このエラーを発生させたファイルの行番号。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.columnNumber", "WebAssembly.RuntimeError.prototype.columnNumber")}} + - : このエラーが発生した行の列番号。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.stack", "WebAssembly.RuntimeError.prototype.stack")}} + - : スタックトレース。 {{jsxref("Error")}} から継承しています。 + +## インスタンスメソッド + +- {{jsxref("Error.prototype.toSource", "WebAssembly.RuntimeError.prototype.toSource()")}} + - : 同じエラーを評価できるコードを返します。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.toString", "WebAssembly.RuntimeError.prototype.toString()")}} + - : 指定された `Error` オブジェクトを表す文字列を返します。{{jsxref("Error")}} から継承しています。 + +## 例 + +### 新しい RuntimeError のインスタンスの作成 + +以下のスニペットでは、新しい `RuntimeError` インスタンスを生成して、詳細をコンソールに記録します。 + +```js +try { + throw new WebAssembly.RuntimeError('Hello', 'someFile', 10); +} catch (e) { + console.log(e instanceof WebAssembly.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); // コードが実行されていた位置を返す +} +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [WebAssembly](/ja/docs/WebAssembly) 概要ページ +- [WebAssembly の概念](/ja/docs/WebAssembly/Concepts) +- [WebAssembly JavaScript API の使用](/ja/docs/WebAssembly/Using_the_JavaScript_API) diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/runtimeerror/index.md b/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/runtimeerror/index.md new file mode 100644 index 0000000000..e55fb53be0 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/webassembly/runtimeerror/runtimeerror/index.md @@ -0,0 +1,66 @@ +--- +title: WebAssembly.RuntimeError() コンストラクター +slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError +tags: + - Constructor + - JavaScript + - Reference + - WebAssembly +browser-compat: javascript.builtins.WebAssembly.RuntimeError.RuntimeError +translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/RuntimeError/RuntimeError +--- +{{JSRef}} + +**`WebAssembly.RuntimeError()`** コンストラクターは、新しい WebAssembly `RuntimeError` オブジェクトを生成します。これは、 WebAssembly が[トラップ](https://webassembly.org/docs/semantics/#traps)を指定するたびに例外として発生する型です。 + +## 構文 + +```js +new WebAssembly.RuntimeError() +new WebAssembly.RuntimeError(message) +new WebAssembly.RuntimeError(message, fileName) +new WebAssembly.RuntimeError(message, fileName, lineNumber) +``` + +### 引数 + +- `message` {{optional_inline}} + - : 人間が読めるエラーの説明です。 +- `fileName` {{optional_inline}} + - : 例外が発生したコードを含むファイル名です。 +- `lineNumber` {{optional_inline}} + - : 例外が発生したコードの行番号です。 + +## 例 + +### 新しい RuntimeError のインスタンスの生成 + +以下のスニペットは新しい `RuntimeError` のインスタンスを生成し、コンソールに詳細を記録します。 + +```js +try { + throw new WebAssembly.RuntimeError('Hello', 'someFile', 10); +} catch (e) { + console.log(e instanceof WebAssembly.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); // コードの実行されていた位置を返す +} +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [WebAssembly](/ja/docs/WebAssembly) 概要ページ +- [WebAssembly の概念](/ja/docs/WebAssembly/Concepts) +- [WebAssembly JavaScript API の使用](/ja/docs/WebAssembly/Using_the_JavaScript_API) -- cgit v1.2.3-54-g00ecf