aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/ja/mozilla/firefox/releases/51/index.html2
-rw-r--r--files/ja/web/javascript/reference/deprecated_and_obsolete_features/the_legacy_iterator_protocol/index.md16
-rw-r--r--files/ja/web/javascript/reference/errors/is_not_iterable/index.md6
-rw-r--r--files/ja/web/javascript/reference/global_objects/array/@@iterator/index.html2
-rw-r--r--files/ja/web/javascript/reference/global_objects/generator/index.html2
-rw-r--r--files/ja/web/javascript/reference/global_objects/object/fromentries/index.html2
-rw-r--r--files/ja/web/javascript/reference/global_objects/promise/all/index.md2
-rw-r--r--files/ja/web/javascript/reference/global_objects/promise/any/index.md2
-rw-r--r--files/ja/web/javascript/reference/global_objects/promise/race/index.md2
-rw-r--r--files/ja/web/javascript/reference/statements/for-await...of/index.html2
-rw-r--r--files/ja/web/javascript/reference/statements/for...of/index.html2
11 files changed, 20 insertions, 20 deletions
diff --git a/files/ja/mozilla/firefox/releases/51/index.html b/files/ja/mozilla/firefox/releases/51/index.html
index 02b9de6b44..250c118b8d 100644
--- a/files/ja/mozilla/firefox/releases/51/index.html
+++ b/files/ja/mozilla/firefox/releases/51/index.html
@@ -42,7 +42,7 @@ translation_of: Mozilla/Firefox/Releases/51
<li>非推奨の <a href="/ja/docs/Web/JavaScript/Reference/Statements/for_each...in">for each...in</a> ループは、<a href="/ja/docs/Web/JavaScript/Reference/Errors/For-each-in_loops_are_deprecated">コンソールで警告が発生する</a> ようになりました ({{bug(1293205)}})。標準化された <code><a href="/ja/docs/Web/JavaScript/Reference/Statements/for...of">for...of</a></code> ループを使用するように、コードを移行してください。</li>
<li><a href="/ja/docs/Web/JavaScript/Reference/Statements/function*">ジェネレーター関数</a> は <a href="/ja/docs/Web/JavaScript/Reference/Statements/label">label</a> を持つことができなくなりました。また、ラベル名として "<code>let</code>" が許可されなくなりました ({{bug(1288459)}})。</li>
<li>非推奨の <a href="/ja/docs/Web/JavaScript/Reference/Statements/Legacy_generator_function">古いジェネレーター関数</a> を <a href="/ja/docs/Web/JavaScript/Reference/Functions/Method_definitions">メソッド定義</a> 内で使用すると、エラーが発生するようになりました ({{bug(1199296)}})。</li>
- <li><a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol">iterator プロトコル</a> の <code>next()</code> メソッドは、戻り値がオブジェクトではない場合に {{jsxref("TypeError")}} が発生するようになりました ({{bug(1016936)}})。</li>
+ <li><a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復子_iterator_プロトコル">iterator プロトコル</a> の <code>next()</code> メソッドは、戻り値がオブジェクトではない場合に {{jsxref("TypeError")}} が発生するようになりました ({{bug(1016936)}})。</li>
</ul>
<h3 id="Developer_Tools" name="Developer_Tools">開発者ツール</h3>
diff --git a/files/ja/web/javascript/reference/deprecated_and_obsolete_features/the_legacy_iterator_protocol/index.md b/files/ja/web/javascript/reference/deprecated_and_obsolete_features/the_legacy_iterator_protocol/index.md
index d3585d4ada..7acdc9f0ee 100644
--- a/files/ja/web/javascript/reference/deprecated_and_obsolete_features/the_legacy_iterator_protocol/index.md
+++ b/files/ja/web/javascript/reference/deprecated_and_obsolete_features/the_legacy_iterator_protocol/index.md
@@ -1,30 +1,30 @@
---
-title: 古いイテレータープロトコル
+title: 古い反復子プロトコル
slug: >-
Web/JavaScript/Reference/Deprecated_and_obsolete_features/The_legacy_Iterator_protocol
tags:
- ES2015
- ガイド
- JavaScript
- - 古いイテレーター
+ - 古い反復子
translation_of: >-
Web/JavaScript/Reference/Deprecated_and_obsolete_features/The_legacy_Iterator_protocol
---
{{jsSidebar("More")}}
-> **Warning:** 古いイテレータープロトコルは SpiderMonkey 固有の機能で、 Firefox 58 で削除されました。将来に向けた使用では、 [for..of](/ja/docs/Web/JavaScript/Reference/Statements/for...of) ループと[反復処理プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)を使用することを検討してください。
+> **Warning:** 古い反復子プロトコルは SpiderMonkey 固有の機能で、 Firefox 58 で削除されました。将来に向けた使用では、 [for..of](/ja/docs/Web/JavaScript/Reference/Statements/for...of) ループと[反復処理プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)を使用することを検討してください。
-## 非推奨の Firefox 専用イテレータープロトコル
+## 非推奨の Firefox 専用反復子プロトコル
-Firefox version 26 以前は、標準の [ES2015 のイテレータープロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)に似た別のイテレータープロトコルを実装していました。
+Firefox version 26 以前は、標準の [ES2015 の反復子プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)に似た別の反復子プロトコルを実装していました。
-オブジェクトが次の意味をもつ `next()` メソッドを実装している場合、そのオブジェクトは古いイテレーターで、反復処理の最後に {{jsxref("Global_Objects/StopIteration", "StopIteration")}} をスローします。
+オブジェクトが次の意味をもつ `next()` メソッドを実装している場合、そのオブジェクトは古い反復子で、反復処理の最後に {{jsxref("Global_Objects/StopIteration", "StopIteration")}} をスローします。
| プロパティ |値 |
| -------- | ------------------------------------------------ |
| `next` | 引数なしの関数で、値を返します。 |
-### 古いイテレータープロトコルと ES2015 イテレータープロトコルとの違い
+### 古い反復子プロトコルと ES2015 反復子プロトコルとの違い
- 値はプレイスホルダーオブジェクトの `value` プロパティではなく、 `next` の呼び出しの返値として直接値が返されていました。
- 反復処理の終了は {{jsxref("Global_Objects/StopIteration", "StopIteration")}} オブジェクトをスローすることで表現されていました。
@@ -61,5 +61,5 @@ catch(e){
## 関連情報
-- [イテレーターとジェネレーター](/ja/docs/Web/JavaScript/Guide/Iterators_and_Generators)
+- [反復子とジェネレーター](/ja/docs/Web/JavaScript/Guide/Iterators_and_Generators)
- 他の[非推奨の機能、廃止された機能](/ja/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features)
diff --git a/files/ja/web/javascript/reference/errors/is_not_iterable/index.md b/files/ja/web/javascript/reference/errors/is_not_iterable/index.md
index 3b3ffb43aa..27bf02056f 100644
--- a/files/ja/web/javascript/reference/errors/is_not_iterable/index.md
+++ b/files/ja/web/javascript/reference/errors/is_not_iterable/index.md
@@ -25,13 +25,13 @@ TypeError: 'x' is not a function or its return value is not iterable (Chrome)
## エラーの原因
-[for…of](/ja/docs/Web/JavaScript/Guide/Loops_and_iteration#for...of_statement) の右辺、 {{jsxref("Promise.all")}} や {{jsxref("TypedArray.from")}} などの引数として指定された値が[反復可能オブジェクト](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)ではありません。反復可能なものは、{{jsxref("Array")}}、{{jsxref("String")}}、{{jsxref("Map")}} 等のような組み込み反復可能型や、ジェネレーターの結果、[反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)を実装しているオブジェクトが成ることができます。</p>
+[for…of](/ja/docs/Web/JavaScript/Guide/Loops_and_iteration#for...of_statement) の右辺、 {{jsxref("Promise.all")}} や {{jsxref("TypedArray.from")}} などの引数として指定された値が[反復可能オブジェクト](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)ではありません。反復可能なものは、{{jsxref("Array")}}、{{jsxref("String")}}、{{jsxref("Map")}} 等のような組み込み反復可能型や、ジェネレーターの結果、[反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)を実装しているオブジェクトが成ることができます。</p>
## 例
### オブジェクトのプロパティの反復処理
-JavaScript では、 {{jsxref("Object")}} は[反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)を実装していない限り反復処理できません。したがって、オブジェクトのプロパティを反復処理するために [for…of](/ja/docs/Web/JavaScript/Guide/Loops_and_iteration#for...of_statement) を使用することはできません。</p>
+JavaScript では、 {{jsxref("Object")}} は[反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)を実装していない限り反復処理できません。したがって、オブジェクトのプロパティを反復処理するために [for…of](/ja/docs/Web/JavaScript/Guide/Loops_and_iteration#for...of_statement) を使用することはできません。</p>
```js example-bad
var obj = { 'France': 'Paris', 'England': 'London' };
@@ -127,7 +127,7 @@ Array.from(myEmptyIterable); // []
## 関連情報
-- [反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)
+- [反復可能プロトコル](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)
- {{jsxref("Object.keys")}}
- {{jsxref("Object.entries")}}
- {{jsxref("Map")}}
diff --git a/files/ja/web/javascript/reference/global_objects/array/@@iterator/index.html b/files/ja/web/javascript/reference/global_objects/array/@@iterator/index.html
index e092619e93..e4a067833b 100644
--- a/files/ja/web/javascript/reference/global_objects/array/@@iterator/index.html
+++ b/files/ja/web/javascript/reference/global_objects/array/@@iterator/index.html
@@ -16,7 +16,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/@@iterator
---
<div>{{JSRef}}</div>
-<p><code><strong>@@iterator</strong></code> メソッドは<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol">反復プロトコル</a>の一部であり、値の列を同期的に反復する方法を定義します。</p>
+<p><code><strong>@@iterator</strong></code> メソッドは<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル">反復プロトコル</a>の一部であり、値の列を同期的に反復する方法を定義します。</p>
<p><code><strong>@@iterator</strong></code> プロパティの初期値は {{jsxref("Array.prototype.values()", "values()")}} プロパティの初期値と同じ関数オブジェクトです。</p>
diff --git a/files/ja/web/javascript/reference/global_objects/generator/index.html b/files/ja/web/javascript/reference/global_objects/generator/index.html
index 3a182f7fa3..743055f6a7 100644
--- a/files/ja/web/javascript/reference/global_objects/generator/index.html
+++ b/files/ja/web/javascript/reference/global_objects/generator/index.html
@@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Generator
---
<div>{{JSRef}}</div>
-<p><code><strong>Generator</strong></code> オブジェクトは{{JSxRef("Statements/function*", "ジェネレーター関数", "", 1)}}によって返され、<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol">反復可能プロトコル</a>と<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol">反復子プロトコル</a>の両方に準拠しています。</p>
+<p><code><strong>Generator</strong></code> オブジェクトは{{JSxRef("Statements/function*", "ジェネレーター関数", "", 1)}}によって返され、<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル">反復可能プロトコル</a>と<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復子_iterator_プロトコル">反復子プロトコル</a>の両方に準拠しています。</p>
<h2 id="Constructor" name="Constructor">コンストラクター</h2>
diff --git a/files/ja/web/javascript/reference/global_objects/object/fromentries/index.html b/files/ja/web/javascript/reference/global_objects/object/fromentries/index.html
index f7597861d6..e9c393e274 100644
--- a/files/ja/web/javascript/reference/global_objects/object/fromentries/index.html
+++ b/files/ja/web/javascript/reference/global_objects/object/fromentries/index.html
@@ -24,7 +24,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/fromEntries
<dl>
<dt><code><var>iterable</var></code></dt>
- <dd><a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol">反復処理プロトコル</a>を実装している {{jsxref("Array")}} や {{jsxref("Map")}} やその他の反復処理可能なオブジェクトです。</dd>
+ <dd><a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル">反復処理プロトコル</a>を実装している {{jsxref("Array")}} や {{jsxref("Map")}} やその他の反復処理可能なオブジェクトです。</dd>
</dl>
<h3 id="Return_value" name="Return_value">返値</h3>
diff --git a/files/ja/web/javascript/reference/global_objects/promise/all/index.md b/files/ja/web/javascript/reference/global_objects/promise/all/index.md
index c99546eb7a..fd056771a6 100644
--- a/files/ja/web/javascript/reference/global_objects/promise/all/index.md
+++ b/files/ja/web/javascript/reference/global_objects/promise/all/index.md
@@ -24,7 +24,7 @@ Promise.all(iterable);
### 引数
- `iterable`
- - : [反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)オブジェクト、例えば {{jsxref("Array")}} など。
+ - : [反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)オブジェクト、例えば {{jsxref("Array")}} など。
### 返値
diff --git a/files/ja/web/javascript/reference/global_objects/promise/any/index.md b/files/ja/web/javascript/reference/global_objects/promise/any/index.md
index d4a5946cf0..34ce72b4ab 100644
--- a/files/ja/web/javascript/reference/global_objects/promise/any/index.md
+++ b/files/ja/web/javascript/reference/global_objects/promise/any/index.md
@@ -23,7 +23,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Promise/any
### 引数
- `iterable`
- - : [反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)オブジェクト、例えば {{JSxRef("Array")}} です。
+ - : [反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)オブジェクト、例えば {{JSxRef("Array")}} です。
### 返値
diff --git a/files/ja/web/javascript/reference/global_objects/promise/race/index.md b/files/ja/web/javascript/reference/global_objects/promise/race/index.md
index d831afb204..b48684a2d3 100644
--- a/files/ja/web/javascript/reference/global_objects/promise/race/index.md
+++ b/files/ja/web/javascript/reference/global_objects/promise/race/index.md
@@ -25,7 +25,7 @@ Promise.race(iterable);
### 引数
- `iterable`
- - : 配列 ({{jsxref("Array")}}) などの反復可能なオブジェクト。[反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol)を確認してください。</dd>
+ - : 配列 ({{jsxref("Array")}}) などの反復可能なオブジェクト。[反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル)を確認してください。</dd>
### 返値
diff --git a/files/ja/web/javascript/reference/statements/for-await...of/index.html b/files/ja/web/javascript/reference/statements/for-await...of/index.html
index 4876cda803..e4a4f901e8 100644
--- a/files/ja/web/javascript/reference/statements/for-await...of/index.html
+++ b/files/ja/web/javascript/reference/statements/for-await...of/index.html
@@ -16,7 +16,7 @@ translation_of: Web/JavaScript/Reference/Statements/for-await...of
---
<div>{{jsSidebar("Statements")}}</div>
-<p><strong><code>for await...of</code> 文</strong>は非同期および同期の<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol">反復可能オブジェクト</a>を使用して、反復処理を行うループを作成します。たとえば、組込みの {{jsxref("String")}}, {{jsxref("Array")}}, 配列風オブジェクト (例えば {{jsxref("Functions/arguments", "arguments")}}, {{domxref("NodeList")}} など), {{jsxref("TypedArray")}}, {{jsxref("Map")}}, {{jsxref("Set")}}, さらに、ユーザー定義の非同期・同期の反復可能オブジェクトを使用することができます。これはオブジェクトのそれぞれの識別可能なプロパティの値に対して、実行される文を表す独自の反復フックを呼び出します。 {{jsxref("Operators/await", "await")}} 演算子と同様に、この分は{{jsxref("Statements/async_function", "非同期関数", "", 1)}}の中でのみ使用されます。</p>
+<p><strong><code>for await...of</code> 文</strong>は非同期および同期の<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル">反復可能オブジェクト</a>を使用して、反復処理を行うループを作成します。たとえば、組込みの {{jsxref("String")}}, {{jsxref("Array")}}, 配列風オブジェクト (例えば {{jsxref("Functions/arguments", "arguments")}}, {{domxref("NodeList")}} など), {{jsxref("TypedArray")}}, {{jsxref("Map")}}, {{jsxref("Set")}}, さらに、ユーザー定義の非同期・同期の反復可能オブジェクトを使用することができます。これはオブジェクトのそれぞれの識別可能なプロパティの値に対して、実行される文を表す独自の反復フックを呼び出します。 {{jsxref("Operators/await", "await")}} 演算子と同様に、この分は{{jsxref("Statements/async_function", "非同期関数", "", 1)}}の中でのみ使用されます。</p>
<div class="blockIndicator note">
<p><code>for await...of</code> は非同期の反復可能オブジェクトではない非同期イテレーターでは動作しません。</p>
diff --git a/files/ja/web/javascript/reference/statements/for...of/index.html b/files/ja/web/javascript/reference/statements/for...of/index.html
index 39af8d9924..7173469f8d 100644
--- a/files/ja/web/javascript/reference/statements/for...of/index.html
+++ b/files/ja/web/javascript/reference/statements/for...of/index.html
@@ -12,7 +12,7 @@ translation_of: Web/JavaScript/Reference/Statements/for...of
---
<div>{{jsSidebar("Statements")}}</div>
-<p><strong><code>for...of</code> 文</strong>は、<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol">反復可能オブジェクト</a>、たとえば組込みの {{jsxref("String")}}, {{jsxref("Array")}}, 配列状オブジェクト (例えば {{jsxref("Functions/arguments", "arguments")}} や {{domxref("NodeList")}}), {{jsxref("TypedArray")}}, {{jsxref("Map")}}, {{jsxref("Set")}}, およびユーザー定義の反復可能オブジェクトなどに対して、反復的な処理をするループを作成します。これはオブジェクトのそれぞれの識別可能なプロパティの値に対して、実行される文を表す独自の反復フックを呼び出します。</p>
+<p><strong><code>for...of</code> 文</strong>は、<a href="/ja/docs/Web/JavaScript/Reference/Iteration_protocols#反復可能_iterable_プロトコル">反復可能オブジェクト</a>、たとえば組込みの {{jsxref("String")}}, {{jsxref("Array")}}, 配列状オブジェクト (例えば {{jsxref("Functions/arguments", "arguments")}} や {{domxref("NodeList")}}), {{jsxref("TypedArray")}}, {{jsxref("Map")}}, {{jsxref("Set")}}, およびユーザー定義の反復可能オブジェクトなどに対して、反復的な処理をするループを作成します。これはオブジェクトのそれぞれの識別可能なプロパティの値に対して、実行される文を表す独自の反復フックを呼び出します。</p>
<div>{{EmbedInteractiveExample("pages/js/statement-forof.html")}}</div>