除錯:Debugger Commands
◆ 全系列5.55版不支援 ◆
15-01 BREAK
中文:中斷點。
原文:causes a breakpoint, which stops execution of script
and loads the debugge
格式:#BR
範例:#br
知道寫錯while和until會死得很難看吧!這個是救贖之道,可
是我不會用,別問我!
15-02 WATCH
中文:將變數加入觀察表。
原文:adds an expression to the debugger Watch List
格式:#WAT expression
範例:#WATCH @testvar
觀察@testvar的值。
#WATCH @testvar+2
觀察@testvar+2的結果。
用來即時測試式子的指令,詳細不明,我只用5.55的。
15-03 UNWATCH
中文:從觀察表中移除變數。
原文:removes an expression from the debugger Watch List
格式:#UNW expression
範例:#UNWATCH @testvar
從觀察表中移除@testvar。
用來即時測試式子的指令,詳細不明,我只用5.55的。