2010-03-01 2 views
2

Flex 명령 줄 디버거를 배우고 있는데이 특정 사용 사례에 대한 정보를 찾을 수 없었습니다.Adobe의 FDB에서 지정된 줄 번호에 중단 점을 설정 하시겠습니까?

내 클래스 파일 중 하나의 특정 줄에 중단 점을 추가하고 싶습니다. 클래스의 함수 에 중단 점을 추가 할 수는 있지만 특정 행 (예 : Foo.as의 117 줄)에서 설정하는 방법을 알아낼 수 없습니까?

나는 주어진 줄에 파일 하나를 설정하려고 할 때, 나는 다른 위치에서 하나를 얻을 :

(FDB) 휴식 푸 (111)

0X에서 중단 점 (1) #### ## : 내가 지정하는거야 라인 # 유효을 확인했습니다, 그래서 은 FDB를 보상하기 위해 노력하고있다 생각하지 않는다 라인 (115)

을 Foo.as 파일.

내가 잘못 했나요? 이것이 FDB에서 가능한가?

답변

1

Abso-lutely,

fdb의 도움말을 확인하십시오. 매우 도움이됩니다. :). help를 입력하거나 help 다음에 명령을 입력하면됩니다. 도움말 중단은 아래의 출력을 제공합니다. 여기에 연결하는 좋은 방법이 많이 있습니다. 사용하는 구문에는 클래스와 지정된 행 번호 사이에 콜론이 누락되어 있습니다. MXML 파일로 시도한 후 제대로 작동합니다.

Set breakpoint at specified line or function. 
Examples: 
    break 87 
    Sets a breakpoint at line 87 of the current file. 
    break myapp.mxml:56 
    Sets a breakpoint at line 56 of myapp.mxml. 
    break #3:29 
    Sets a breakpoint at line 29 of file #3. 
    break doThis 
    Sets a breakpoint at function doThis() in the current file. 
    break myapp.mxml:doThat 
    Sets a breakpoint at function doThat() in file myapp.mxml. 
    break #3:doOther 
    Sets a breakpoint at function doOther() in file #3. 
    break 
    Sets a breakpoint at the current execution address in the 
    current stack frame. This is useful for breaking on return 
    to a stack frame. 
To see file names and numbers, do 'info sources' or 'info files'. 
To see function names, do 'info functions'. 
Abbreviated file names and function names are accepted if unambiguous. 
If line number is specified, break at start of code for that line. 
If function is specified, break at start of code for that function. 
See 'commands' and 'condition' for further breakpoint control.