Bug 1872003 uninline AudioSegment::Resample() to remove MediaTrackGraph.h include...
[gecko.git] / .lldbinit
blobf1beb609ba87e0d1728b479412cfeecbd9ac5172
1 # .lldbinit file for debugging Mozilla
3 # -----------------------------------------------------------------------------
4 # For documentation on all of the commands and type summaries defined here and
5 # in the accompanying Python scripts, see third_party/python/lldbutils/README.txt.
6 # -----------------------------------------------------------------------------
8 # Import the module that defines complex Gecko debugging commands.  This assumes
9 # you are either running lldb from the top level source directory, the objdir,
10 # or the dist/bin directory.  (.lldbinit files in the objdir and dist/bin set
11 # topsrcdir appropriately.)
12 script topsrcdir = topsrcdir if "topsrcdir" in locals() else os.getcwd()
13 script sys.path.append(os.path.join(topsrcdir, "python/lldbutils"))
14 script import lldbutils
15 script lldbutils.init()
17 # Mozilla's use of UNIFIED_SOURCES to include multiple source files into a
18 # single compiled file breaks lldb breakpoint setting. This works around that.
19 # See http://lldb.llvm.org/troubleshooting.html for more info.
20 settings set target.inline-breakpoint-strategy always
22 # Show the dynamic type of an object when using "expr".  This, for example,
23 # will show a variable declared as "nsIFrame *" that points to an nsBlockFrame
24 # object as being of type "nsBlockFrame *" rather than "nsIFrame *".
25 settings set target.prefer-dynamic-value run-target
27 # Show the value of text nodes.
28 type summary add nsTextNode --summary-string "${var.mText}"
30 # Dump the current JS stack.
31 command alias js expr DumpJSStack()