aboutsummaryrefslogtreecommitdiff
path: root/files/ja/tools/debugger/how_to/set_a_breakpoint/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/tools/debugger/how_to/set_a_breakpoint/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/tools/debugger/how_to/set_a_breakpoint/index.html')
-rw-r--r--files/ja/tools/debugger/how_to/set_a_breakpoint/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/ja/tools/debugger/how_to/set_a_breakpoint/index.html b/files/ja/tools/debugger/how_to/set_a_breakpoint/index.html
new file mode 100644
index 0000000000..3422962b5e
--- /dev/null
+++ b/files/ja/tools/debugger/how_to/set_a_breakpoint/index.html
@@ -0,0 +1,28 @@
+---
+title: ブレークポイントを設置する
+slug: Tools/Debugger/How_to/Set_a_breakpoint
+tags:
+ - JavaScript
+ - Tools
+translation_of: Tools/Debugger/How_to/Set_a_breakpoint
+---
+<p>{{ToolsSidebar}}</p>
+
+<p>以下のいずれかの方法で、ブレークポイントを設置できます:</p>
+
+<ul>
+ <li><a href="/ja/docs/Tools/Debugger/UI_Tour#Source_pane">ソースペイン</a> で、停止したい行の行番号をクリックします。</li>
+ <li><a href="/ja/docs/Tools/Debugger/UI_Tour#Source_pane">ソースペイン</a> で、停止したい行でコンテキストメニューを開いて [ブレークポイントを追加] を選択します。</li>
+ <li><a href="/ja/docs/Tools/Debugger/UI_Tour#Source_pane">ソースペイン</a> で、ブレークポイントを設置したい行をハイライトして <kbd>Ctrl</kbd>+<kbd>B</kbd> (Windows/Linux) または <kbd>Command</kbd>+<kbd>B</kbd> (Mac OS X) を押下します。</li>
+</ul>
+
+<p>以下の動画は、コンテキストメニューを使用してブレークポイントを設置しています:</p>
+
+<p>{{EmbedYouTube("P7b98lEijF0")}}</p>
+
+<p>それぞれのブレークポイントは、デバッガー内の 2 か所に表示します:</p>
+
+<ul>
+ <li><a href="/ja/docs/Tools/Debugger/UI_Tour#Breakpoints_list">ブレークポイント一覧</a> で、ブレークポイントのファイル名や行番号を表示</li>
+ <li><a href="/ja/docs/Tools/Debugger/UI_Tour#Source_pane">ソースペイン</a> で行に青色の矢印を表示、または <a href="/ja/docs/Tools/Debugger/How_to/Set_a_conditional_breakpoint">条件付き</a> ブレークポイントであれば橙色の矢印を表示</li>
+</ul>