blob: 4f081282b9fc37ba99bca47e0a93a90600429c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
title: debugger
slug: Web/JavaScript/Reference/Statements/debugger
tags:
- JavaScript
- Reference
- Statement
translation_of: Web/JavaScript/Reference/Statements/debugger
---
<div>{{jsSidebar("Statements")}}</div>
<p><strong><code>debugger</code> 문</strong>은 중단점 설정 등 현재 사용할 수 있는 디버그 기능을 호출합니다. 사용할 수있는 디버깅 기능이 없으면 아무런 동작도 하지 않습니다.</p>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">debugger;</pre>
<h2 id="예제">예제</h2>
<p>다음 예제에서는 함수가 호출 시 디버거를 활성화하도록 <code>debugger</code>를 삽입한 모습입니다.</p>
<pre class="brush:js">function potentiallyBuggyCode() {
debugger;
// 버그가 있을 것으로 생각하는 코드를 분석하거나, 한 단계씩 진행해보거나...
}</pre>
<p>디버거가 활성화되면 디버거 문의 위치에서 실행이 일시중지됩니다. 스크립트 소스의 중단점과 비슷합니다.</p>
<p><a href="https://mdn.mozillademos.org/files/6963/Screen Shot 2014-02-07 at 9.14.35 AM.png"><img alt="Paused at a debugger statement." src="https://mdn.mozillademos.org/files/6963/Screen%20Shot%202014-02-07%20at%209.14.35%20AM.png" style="height: 371px; width: 700px;"></a></p>
<h2 id="명세">명세</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-debugger-statement', 'Debugger statement')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-debugger-statement', 'Debugger statement')}}</td>
<td>{{Spec2('ES6')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ES5.1', '#sec-12.15', 'Debugger statement')}}</td>
<td>{{Spec2('ES5.1')}}</td>
<td>Initial definition</td>
</tr>
<tr>
<td>{{SpecName('ES3', '#sec-7.5.3', 'Debugger statement')}}</td>
<td>{{Spec2('ES3')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ES1', '#sec-7.4.3', 'Debugger statement')}}</td>
<td>{{Spec2('ES1')}}</td>
<td>Only mentioned as reserved word.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("javascript.statements.debugger")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li><a href="/ko/docs/Mozilla/Debugging/Debugging_JavaScript">JavaScript 디버깅</a></li>
<li><a href="/ko/docs/도구들/Debugger">Firefox 개발자 도구의 디버거</a></li>
</ul>
|