Specifications
257ADOBE FLEX 3
Building and Deploying Adobe Flex 3 Applications
To set the list location to where the execution is currently stopped, use the home command.
The following example lists code from line 10 to line 15:
(fdb) list 10, 15
If you specify a hyphen (-) in the previous example, the list command displays the 10 lines before a previous 10-
line listing.
Specify a line number to list the lines around that line in the current file, as in the following example:
(fdb) list 10
Specify a filename followed by a line number to list the lines around that line in that file, as in the following
example:
(fdb) list effects.mxml:10
Specify a function name to list the lines around the beginning of that function, as in the following example:
(fdb) list myFunction
Specify a filename followed by a function name to list the lines around the beginning of that function. This lets
you distinguish among like-named static functions, as follows:
(fdb) list effects.mxml:myFunction
You can resolve ambiguous matches by extending the value of the function name or filename, as the following
examples show:
Filenames:
(fdb) list UIOb
Ambiguous matching file names:
UIComponent.as#66
UIComponentDescriptor.as#67
UIComponentExtensions.as#68
(fdb) list UIComponent.
Function names:
(fdb) list init
Ambiguous matching function names:
init
initFromClipParameters
(fdb) list init(










