diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-12 22:33:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-12 22:33:57 +0900 |
commit | 188b7f343dcbb050add6b58d46b0ba8a3a45c32e (patch) | |
tree | c1173c7da36580bfaafb72f9401da05830e79b89 /files/ja | |
parent | e1c29cf4a9b944e095b6f03c8677d089aab0caa6 (diff) | |
download | translated-content-188b7f343dcbb050add6b58d46b0ba8a3a45c32e.tar.gz translated-content-188b7f343dcbb050add6b58d46b0ba8a3a45c32e.tar.bz2 translated-content-188b7f343dcbb050add6b58d46b0ba8a3a45c32e.zip |
Global_Objects/WebAssembly/CompileError を更新 (#2331)
- Markdownに変換
- 2021/07/21 時点の英語版に同期
- コンストラクターについては新規翻訳
Diffstat (limited to 'files/ja')
3 files changed, 144 insertions, 110 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/compileerror/index.md b/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/compileerror/index.md new file mode 100644 index 0000000000..26fa3f0799 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/compileerror/index.md @@ -0,0 +1,66 @@ +--- +title: WebAssembly.CompileError() コンストラクター +slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError +tags: + - Constructor + - JavaScript + - Reference + - WebAssembly +browser-compat: javascript.builtins.WebAssembly.CompileError.CompileError +translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError +--- +{{JSRef}} + +**`WebAssembly.CompileError()`** コンストラクターは、新しい WebAssembly の `CompileError` オブジェクトを生成します。これは WebAssembly のデコードまたは検証中のエラーを示します。 + +## 構文 + +```js +new WebAssembly.CompileError() +new WebAssembly.CompileError(message) +new WebAssembly.CompileError(message, fileName) +new WebAssembly.CompileError(message, fileName, lineNumber) +``` + +### 引数 + +- `message` {{optional_inline}} + - : このエラーの人間が読める説明です。 +- `fileName` {{optional_inline}} + - : 例外が発生したコードを含むファイル名です。 +- `lineNumber` {{optional_inline}} + - : 例外が発生したコードの行番号です。 + +## 例 + +### 新しい CompileError インスタンスの生成 + +以下のスニペットは新しい `CompileError` のインスタンスを生成し、コンソールに詳細を記録します。 + +```js +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); // コードの実行されていた位置を返す +} +``` + +## 仕様書 + +{{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/compileerror/index.html b/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/index.html deleted file mode 100644 index 785e7f604e..0000000000 --- a/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/index.html +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: WebAssembly.CompileError() -slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError -translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError ---- -<div>{{JSRef}} {{SeeCompatTable}}</div> - -<p><code><strong>WebAssembly.CompileError()</strong></code> コンストラクタは WebAssembly <code>CompileError</code> オブジェクトを生成します。WebAssembly のデコードやバリデーション中にエラーが発生したことを示します。</p> - -<h2 id="構文">構文</h2> - -<pre class="syntaxbox"><code>new WebAssembly.CompileError(<var>message</var>, <var>fileName</var>, <var>lineNumber</var>)</code></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>CompileError</code> コンストラクタは自身のプロパティを持ちませんが、プロトタイプチェーンを通していくつかのプロパティを継承します。</em></p> - -<dl> - <dt><code>WebAssembly.CompileError.prototype.constructor</code></dt> - <dd>インスタンスのプロトタイプを生成した関数を示します。</dd> - <dt>{{jsxref("Error.prototype.message", "WebAssembly.CompileError.prototype.message")}}</dt> - <dd>エラーメッセージ。ECMA-262では {{jsxref("URIError")}} は自身の <code>message</code> プロパティを提供する必要がありますが、<a href="/ja/docs/Mozilla/Projects/SpiderMonkey">SpiderMonkey</a> では {{jsxref("Error.prototype.message")}} を継承します。</dd> - <dt>{{jsxref("Error.prototype.name", "WebAssembly.CompileError.prototype.name")}}</dt> - <dd>エラー名。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.fileName", "WebAssembly.CompileError.prototype.fileName")}}</dt> - <dd>このエラーを発生させたファイルのパス。 {{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.lineNumber", "WebAssembly.CompileError.prototype.lineNumber")}}</dt> - <dd>このエラーを発生させたファイルの行番号。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.columnNumber", "WebAssembly.CompileError.prototype.columnNumber")}}</dt> - <dd>このエラーが発生した行の列番号。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.stack", "WebAssembly.CompileError.prototype.stack")}}</dt> - <dd>スタックトレース。{{jsxref("Error")}} から継承されます。</dd> -</dl> - -<h2 id="メソッド">メソッド</h2> - -<p><em><code>CompileError</code> コンストラクタは自身のメソッドを持ちませんが、プロトタイプチェーンを通していくつかのメソッドを継承します。</em></p> - -<dl> - <dt>{{jsxref("Error.prototype.toSource", "WebAssembly.CompileError.prototype.toSource()")}}</dt> - <dd>同じエラーを評価できるコードを返します。{{jsxref("Error")}} から継承されます。</dd> - <dt>{{jsxref("Error.prototype.toString", "WebAssembly.CompileError.prototype.toString()")}}</dt> - <dd>指定された <code>Error</code> オブジェクトを表す文字列を返します。{{jsxref("Error")}} から継承されます。</dd> -</dl> - -<h2 id="例">例</h2> - -<p>以下のスニペットで <code>CompileError</code> インスタンスを生成して、詳細をコンソールに表示します。</p> - -<pre class="brush: js">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); // コードが実行された場所を返す -}</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.CompileError")}}</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> - -<dl> -</dl> diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/index.md b/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/index.md new file mode 100644 index 0000000000..e851a74a2a --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/webassembly/compileerror/index.md @@ -0,0 +1,78 @@ +--- +title: WebAssembly.CompileError +slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError +tags: + - API + - Class + - CompileError + - JavaScript + - NativeError + - Reference + - WebAssembly +browser-compat: javascript.builtins.WebAssembly.CompileError +translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError +--- +{{JSRef}} + +**`WebAssembly.CompileError`** オブジェクトは、 WebAssembly のデコードや検証の間のエラーを示します。 + +## コンストラクター + +- [`WebAssembly.CompileError()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/CompileError/CompileError) + - : 新しい `WebAssembly.CompileError` オブジェクトを生成します。 + +## インスタンスプロパティ + +- {{jsxref("Error.prototype.message", "WebAssembly.CompileError.prototype.message")}} + - : エラーメッセージ。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.name", "WebAssembly.CompileError.prototype.name")}} + - : エラー名。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.fileName", "WebAssembly.CompileError.prototype.fileName")}} + - : このエラーを発生させたファイルのパス。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.lineNumber", "WebAssembly.CompileError.prototype.lineNumber")}} + - : このエラーを発生させたファイルの行番号。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.columnNumber", "WebAssembly.CompileError.prototype.columnNumber")}} + - : このエラーが発生した行の列番号。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.stack", "WebAssembly.CompileError.prototype.stack")}} + - : スタックトレース。 {{jsxref("Error")}} から継承しています。 + +## インスタンスメソッド + +- {{jsxref("Error.prototype.toSource", "WebAssembly.CompileError.prototype.toSource()")}} + - : 同じエラーを評価できるコードを返します。 {{jsxref("Error")}} から継承しています。 +- {{jsxref("Error.prototype.toString", "WebAssembly.CompileError.prototype.toString()")}} + - : 指定された `Error` オブジェクトを表す文字列を返します。{{jsxref("Error")}} から継承しています。 + +## 例 + +### 新しい CompileError のインスタンスの作成 + +以下のスニペットでは、新しい `CompileError` インスタンスを生成して、詳細をコンソールに記録します。 + +```js +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); // コードが実行されていた位置を返す +} +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [WebAssembly](/ja/docs/WebAssembly) 概要ページ +- [WebAssembly の概念](/ja/docs/WebAssembly/Concepts) +- [WebAssembly JavaScript API の使用](/ja/docs/WebAssembly/Using_the_JavaScript_API) |