aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/functions/method_definitions/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-12 10:11:30 +0900
committerpotappo <potappo@gmail.com>2021-07-18 18:33:18 +0900
commitfd1e2435671adf89d5a2718fc7d1454828f147ae (patch)
tree769a406472882e3bafda9e32fb8b4414cfcfb1d5 /files/ja/web/javascript/reference/functions/method_definitions/index.html
parentb0caefeaf81fd55008397bfd6f7765e15cecd224 (diff)
downloadtranslated-content-fd1e2435671adf89d5a2718fc7d1454828f147ae.tar.gz
translated-content-fd1e2435671adf89d5a2718fc7d1454828f147ae.tar.bz2
translated-content-fd1e2435671adf89d5a2718fc7d1454828f147ae.zip
remove wiki.developer.mozilla.org links
Diffstat (limited to 'files/ja/web/javascript/reference/functions/method_definitions/index.html')
-rw-r--r--files/ja/web/javascript/reference/functions/method_definitions/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/functions/method_definitions/index.html b/files/ja/web/javascript/reference/functions/method_definitions/index.html
index 14f21a5b91..8bb880d1fe 100644
--- a/files/ja/web/javascript/reference/functions/method_definitions/index.html
+++ b/files/ja/web/javascript/reference/functions/method_definitions/index.html
@@ -75,7 +75,7 @@ translation_of: Web/JavaScript/Reference/Functions/Method_definitions
<ul>
<li>ジェネレータープロパティ名の前にアスタリスク (*)が 必要です。すなわち、<code>* g(){}</code> は動作しますが、<code>g *(){}</code> は動作しません。</li>
- <li>非ジェネレーターメソッド定義では <code>yield</code> キーワードを入れることはできません。つまり <a href="https://wiki.developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Statements/Legacy_generator_function">旧式の ジェネレーター関数</a> は動作せず、{{jsxref("SyntaxError")}}を投げます。<code>yield</code> は常にアスタリスク (<code>*</code>)と一緒に使ってください。</li>
+ <li>非ジェネレーターメソッド定義では <code>yield</code> キーワードを入れることはできません。つまり <a href="/ja/docs/Web/JavaScript/Reference/Statements/Legacy_generator_function">旧式の ジェネレーター関数</a> は動作せず、{{jsxref("SyntaxError")}}を投げます。<code>yield</code> は常にアスタリスク (<code>*</code>)と一緒に使ってください。</li>
</ul>
<pre class="brush: js;highlight[12]">// 名前付きプロパティを使用 (ES6 より前)