From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/tools/how_to/index.html | 11 ++++++++ files/ko/tools/how_to/open_the_debugger/index.html | 24 +++++++++++++++++ files/ko/tools/how_to/search/index.html | 24 +++++++++++++++++ files/ko/tools/how_to/set_a_breakpoint/index.html | 31 ++++++++++++++++++++++ 4 files changed, 90 insertions(+) create mode 100644 files/ko/tools/how_to/index.html create mode 100644 files/ko/tools/how_to/open_the_debugger/index.html create mode 100644 files/ko/tools/how_to/search/index.html create mode 100644 files/ko/tools/how_to/set_a_breakpoint/index.html (limited to 'files/ko/tools/how_to') diff --git a/files/ko/tools/how_to/index.html b/files/ko/tools/how_to/index.html new file mode 100644 index 0000000000..40f5269f45 --- /dev/null +++ b/files/ko/tools/how_to/index.html @@ -0,0 +1,11 @@ +--- +title: How to +slug: Tools/How_to +tags: + - NeedsTranslation + - TopicStub +translation_of: Tools/Debugger/How_to +--- +
{{ToolsSidebar}}

These articles describe how to use the debugger.

+ +

{{ ListSubpages () }}

diff --git a/files/ko/tools/how_to/open_the_debugger/index.html b/files/ko/tools/how_to/open_the_debugger/index.html new file mode 100644 index 0000000000..5b27e11b7a --- /dev/null +++ b/files/ko/tools/how_to/open_the_debugger/index.html @@ -0,0 +1,24 @@ +--- +title: Open the debugger +slug: Tools/How_to/Open_the_debugger +translation_of: Tools/Debugger/How_to/Open_the_debugger +--- +
{{ToolsSidebar}}
+

이 페이지는 Firefox 52 이상, Firefox Nightly 및 Firefox Developer Edition 에 나타나는 JavaScript Debugger 에 대해 설명합니다.

+ +

이전 버전의 Firefox 또는 FireFox Beta 또는 Release 에서는 어떠했는지 보려면 Debugger (before Firefox 52) 를 참조하세요.

+ +

이전 버전의 Debugger 로 다시 전환해야 하는 경우, about:config 에서 "devtools.debugger.new-debugger-frontend" 를 false 로 설정하면 됩니다.

+
+ +

Debugger 를 여는 방법에는 3가지가 있습니다

+ + + +

{{EmbedYouTube("yI5SlVQiZtI")}}

+ +

 

diff --git a/files/ko/tools/how_to/search/index.html b/files/ko/tools/how_to/search/index.html new file mode 100644 index 0000000000..9971abcaae --- /dev/null +++ b/files/ko/tools/how_to/search/index.html @@ -0,0 +1,24 @@ +--- +title: Search +slug: Tools/How_to/Search +translation_of: Tools/Debugger/How_to/Search +--- +
{{ToolsSidebar}}
+

이 페이지는 Firefox 52 이상, Firefox Nightly 및 Firefox Developer Edition에 나타나는 JavaScript 디버거에 대해 설명합니다.

+ +

이전 버전의 Firefox 나 Firefox Beta 및 Release에서 어떤 모습인지 보려면 Debugger (Firefox 52 이전)를 참조하십시오.

+ +

이 버전의 디버거를 가져와 이전 버전으로 다시 전환해야하는 경우 about:config를 url에 입력하여 "devtools.debugger.new-debugger-frontend"환경 설정을false로 설정하여 수행 할 수 있습니다.

+
+ +

파일 찾기

+ +

특정 파일을 검색하려면, 단축키 Control + P (Mac에서는 Command + P ) 를 누르고 검색어를 입력하세요. 소스창(source pane)에는 입력하는 동안 일치하는 모든 파일 목록을 표시됩니다. 위 아래 방향키로 목록을 이동할 수 있고,  Enter(Return)키로 해당 파일을 열 수 있습니다:

+ +

{{EmbedYouTube("xXsfYx0THWg")}}

+ +

파일 내에서 찾기

+ +

소스창(source pane)에 로드된 파일의 특정 단어를 검색하려면 소스창(source pane)에 포커스가 있는 상태에서 단축키 Control + F (Mac에서는 Command + F) 를 누르고 Enter(Return) 키를 눌러서 검색합니다. 디버거는 코드내에 일치하는 검색한 단어의 수를 표시하고 각 단어를 네모칸으로 표시합니다 :

+ +

diff --git a/files/ko/tools/how_to/set_a_breakpoint/index.html b/files/ko/tools/how_to/set_a_breakpoint/index.html new file mode 100644 index 0000000000..f5d2af9e06 --- /dev/null +++ b/files/ko/tools/how_to/set_a_breakpoint/index.html @@ -0,0 +1,31 @@ +--- +title: Set a breakpoint +slug: Tools/How_to/Set_a_breakpoint +translation_of: Tools/Debugger/How_to/Set_a_breakpoint +--- +
{{ToolsSidebar}}
+

이 페이지는 Firefox 52 이상, Firefox Nightly 및 Firefox Developer Edition에 나타나는 JavaScript 디버거에 대해 설명합니다.

+ +

이전 버전의 Firefox 나 Firefox Beta 및 Release에서 어떤 모습인지 보려면 Debugger (Firefox 52 이전)를 참조하십시오.

+ +

이 버전의 디버거를 가져와 이전 버전으로 다시 전환해야하는 경우 about:config를 url에 입력하여 "devtools.debugger.new-debugger-frontend"환경 설정을false로 설정하여 수행 할 수 있습니다.

+
+ +

중단점을 설정하는 방법은 다음과 같은 세가지 방법이 있습니다:

+ + + +

아래 비디오는 바로가기 메뉴(context menu)를 사용하여 중단 점을 설정합니다:

+ +

{{EmbedYouTube("P7b98lEijF0")}}

+ +

각 중단점은 디버거의 두 위치에 표시됩니다:

+ + -- cgit v1.2.3-54-g00ecf