aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/webassembly/table
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
commit6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch)
tree890e3e27131be010d82ef957fa68db495006cb0e /files/ja/web/javascript/reference/global_objects/webassembly/table
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip
unslug ja: move
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/webassembly/table')
-rw-r--r--files/ja/web/javascript/reference/global_objects/webassembly/table/prototype/index.html75
1 files changed, 0 insertions, 75 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/webassembly/table/prototype/index.html b/files/ja/web/javascript/reference/global_objects/webassembly/table/prototype/index.html
deleted file mode 100644
index 84709eb736..0000000000
--- a/files/ja/web/javascript/reference/global_objects/webassembly/table/prototype/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
----
-title: WebAssembly.Table.prototype
-slug: Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/prototype
-tags:
- - JavaScript
- - Property
- - Prototype
- - WebAssembly
- - table
-translation_of: Web/JavaScript/Reference/Global_Objects/WebAssembly/Table
-translation_of_original: Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/prototype
----
-<div>{{JSRef}} {{SeeCompatTable}}</div>
-
-<p><code><strong>WebAssembly.Table</strong></code><strong><code>.prototype</code></strong> プロパティは {{jsxref("WebAssembly.Table()")}} コンストラクタのプロトタイプを表します。</p>
-
-<div>{{js_property_attributes(0, 0, 0)}}</div>
-
-<h2 id="説明">説明</h2>
-
-<p>全ての {{jsxref("WebAssembly.Table")}} インスタンスは <code>Table.prototype</code> を継承します。{{jsxref("WebAssembly.Table()")}} コンストラクタのプロトタイプオブジェクトは全ての {{jsxref( "WebAssembly.Table")}} インスタンスに影響するように変更可能です。</p>
-
-<h2 id="プロパティ">プロパティ</h2>
-
-<dl>
- <dt><code>Table.prototype.constructor</code></dt>
- <dd>このオブジェクトのインスタンスを生成した関数を返します。デフォルトでは  {{jsxref("WebAssembly.Table()")}} コンストラクタです。</dd>
- <dt>{{jsxref("WebAssembly/Table/length","Table.prototype.length")}}</dt>
- <dd>テーブルの長さを返します。すなわち、要素数です。</dd>
- <dt>
- <h2 id="メソッド">メソッド</h2>
- </dt>
- <dt>{{jsxref("WebAssembly/Table/get","Table.prototype.get()")}}</dt>
- <dd>アクセサ関数。インデックスから格納された要素を取得します。</dd>
- <dt>{{jsxref("WebAssembly/Table/grow","Table.prototype.grow()")}}</dt>
- <dd>指定した要素数で Table インスタンスを拡張します。</dd>
- <dt>{{jsxref("WebAssembly/Table/set","Table.prototype.set()")}}</dt>
- <dd>指定したインデックスに要素を格納します。</dd>
-</dl>
-
-<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', '#webassemblytable-objects', 'Table')}}</td>
- <td>{{Spec2('WebAssembly JS')}}</td>
- <td>初回ドラフト定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2>
-
-<div>
-
-
-<p>{{Compat("javascript.builtins.WebAssembly.Table.prototype")}}</p>
-</div>
-
-<h2 id="関連情報">関連情報</h2>
-
-<ul>
- <li>{{jsxref("WebAssembly.Table")}}</li>
- <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>