diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-07 22:50:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 22:50:36 +0900 |
commit | 09972c2ea21cefc72017cf98554bbb82dd2edf58 (patch) | |
tree | 1ed61dd72342a69013e0fabcaa80c8dd9443b2c2 /files/ja | |
parent | e35a795d7236ad7eebd1de40a1ca00e83912b0bc (diff) | |
download | translated-content-09972c2ea21cefc72017cf98554bbb82dd2edf58.tar.gz translated-content-09972c2ea21cefc72017cf98554bbb82dd2edf58.tar.bz2 translated-content-09972c2ea21cefc72017cf98554bbb82dd2edf58.zip |
Global_Objects/WebAssembly/RuntimeError を更新 (#2284)
- Markdownに変換
- 2021/08/31 時点の英語版に同期
- コンストラクターは新規翻訳
Diffstat (limited to 'files/ja')
3 files changed, 143 insertions, 107 deletions
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 ---- -<div>{{JSRef}} {{SeeCompatTable}}</div> - -<p><code><strong>WebAssembly.RuntimeError()</strong></code> コンストラクタは WebAssembly <code>RuntimeError</code> オブジェクトを生成します。WebAssembly で定義されている <a href="http://webassembly.org/docs/semantics/#traps">トラップ</a> が発生するごとにスローされます。</p> - -<h2 id="構文">構文</h2> - -<pre class="syntaxbox">new WebAssembly.RuntimeError(<var>message</var>, <var>fileName</var>, <var>lineNumber</var>)</pre> - -<h3 id="パラメータ">パラメータ</h3> - -<dl> - <dt><code>message</code> {{optional_inline}}</dt> - <dd>ヒューマンリーダブルなエラーの説明。</dd> - <dt><code>fileName</code> {{optional_inline}}{{non-standard_inline}}</dt> - <dd>例外の原因となったコードを含むファイルの名前。</dd> - <dt><code>lineNumber</code> {{optional_inline}}{{non-standard_inline}}</dt> - <dd>例外の原因となったコードの行番号。</dd> -</dl> - -<h2 id="プロパティ">プロパティ</h2> - -<p><em><code>RuntimeError</code> コンストラクタは自身のプロパティを持ちませんが、プロトタイプチェーンを通していくつかのプロパティを継承します。</em></p> - -<dl> - <dt><code>WebAssembly.RuntimeError.prototype.constructor</code></dt> - <dd>インスタンスのプロトタイプを生成した関数を示します。</dd> - <dt>{{jsxref("Error.prototype.message", "WebAssembly.RuntimeError.prototype.message")}}</dt> - <dd>エラーメッセージ。ECMA-262 では {{jsxref("URIError")}} は自身の <code>message</code> プロパティを提供する必要がありますが、<a href="/en-US/docs/Mozilla/Projects/SpiderMonkey">SpiderMonkey</a> では {{jsxref("Error.prototype.message")}} を継承します。</dd> - <dt>{{jsxref("Error.prototype.name", "WebAssembly.RuntimeError.prototype.name")}}</dt> - <dd>エラー名。 {{jsxref("Error")}}.</dd> - <dt>{{jsxref("Error.prototype.fileName", "WebAssembly.RuntimeError.prototype.fileName")}}</dt> - <dd>このエラーを発生させたファイルのパス。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.lineNumber", "WebAssembly.RuntimeError.prototype.lineNumber")}}</dt> - <dd>このエラーを発生させたファイルの行番号。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.columnNumber", "WebAssembly.RuntimeError.prototype.columnNumber")}}</dt> - <dd>このエラーが発生した行の列番号。<a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Error" title="Error コンストラクターは、エラーオブジェクトを生成します。Error オブジェクトのインスタンスは、ランタイムエラーが発生した時に投げられます。Error オブジェクトは、ユーザー定義の例外の基底オブジェクトとして使用することもできます。標準の組み込みエラー型については下記を参照してください。"><code>Error</code></a> から継承されます。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.stack", "WebAssembly.RuntimeError.prototype.stack")}}</dt> - <dd>スタックトレース。{{jsxref("Error")}} から継承されます。</dd> -</dl> - -<h2 id="メソッド">メソッド</h2> - -<p><em><code>RuntimeError</code> コンストラクタは自身のメソッドを持ちませんが、プロトタイプチェーンを通していくつかのメソッドを継承します。</em></p> - -<dl> - <dt>{{jsxref("Error.prototype.toSource", "WebAssembly.RuntimeError.prototype.toSource()")}}</dt> - <dd>同じエラーを評価できるコードを返します。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.toString", "WebAssembly.RuntimeError.prototype.toString()")}}</dt> - <dd>指定された <code>Error</code> オブジェクトを表す文字列を返します。{{jsxref("Error")}} から継承されます。</dd> -</dl> - -<h2 id="例">例</h2> - -<p>以下のスニペットで <code>RuntimeError</code> インスタンスを生成して、詳細をコンソールに表示します。</p> - -<pre class="brush: js">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); // コードが実行された場所を返す -}</pre> - -<h2 id="仕様">仕様</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様</th> - <th scope="col">策定状況</th> - <th scope="col">コメント</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('WebAssembly JS', '#constructor-properties-of-the-webassembly-object', 'WebAssembly constructors')}}</td> - <td>{{Spec2('WebAssembly JS')}}</td> - <td>WebAssembly の初回ドラフト定義。</td> - </tr> - <tr> - <td>{{SpecName('ESDraft', '#sec-native-error-types-used-in-this-standard', 'NativeError')}}</td> - <td>{{Spec2('ESDraft')}}</td> - <td>標準の NativeError 型の定義。</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2> - -<div>{{Compat("javascript.builtins.WebAssembly.RuntimeError")}}</div> - -<h2 id="関連情報">関連情報</h2> - -<ul> - <li><a href="/ja/docs/WebAssembly">WebAssembly</a> overview page</li> - <li><a href="/ja/docs/WebAssembly/Concepts">WebAssembly のコンセプト</a></li> - <li><a href="/ja/docs/WebAssembly/Using_the_JavaScript_API">WebAssembly JavaScript API を使用する</a></li> -</ul> 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) |