Specifications
259ADOBE FLEX 3
Building and Deploying Adobe Flex 3 Applications
If you use truncated file and function names, fdb tries to map the argument to an unambiguous function name
first, and then a filename. For example,
list foo first tries to find a function unambiguously starting with foo in
the current file. If this fails, it tries to find a file unambiguously starting with foo.
Printing stack traces
Use the bt command to display a back trace of all stack frames. The bt command has the following syntax:
(fdb) bt
Getting status
Use the info command to get general information about the application. The info command has the following
syntax:
info [options] [args]
The info command displays general information about the application being debugged. The following table
describes the options of the
info command:
Option Description
arguments
Displays the argument variables of the current stack frame.
breakpoints
Displays the status of user-settable breakpoints.
display
Displays the list of autodisplay expressions.
files [arg]
Displays the names of all files used by the target application. This includes authored files and system files, plus
generated files. Also indicates the file number for each file.
You can use wildcards and literals to select and sort the output. The info files command supports the
following:
info files character Alphabetically lists files with names that start with the specified character. The
following example lists all files starting with the letter V:
info files V
info files *.extension Alphabetically lists all files with the given extension. The following example
lists all files with the as extension:
info files *.as
info files *string* Alphabetically lists all files with names that include string.










