Method: FlashSDK::FDB#commands

Defined in:
lib/flashsdk/fdb.rb

#commandsObject

Set commands to be executed when a breakpoint is hit. Give breakpoint number as argument after ‘commands`. With no argument, the targeted breakpoint is the last one set. The commands themselves follow starting on the next line. Type a line containing “end” to indicate the end of them. Give “silent” as the first line to make the breakpoint silent; then no output is printed when it is hit, except what the commands print.

Example:

(fdb) commands
Type commands for when breakpoint 1 is hit, one per line.
End with a line saying just 'end'.
>w
>end


228
# File 'lib/flashsdk/fdb.rb', line 228

add_action :commands, String