Bug 928333 - Disable dumpHeap function with --fuzzing-safe. r=waldo

--HG--
extra : rebase_source : 6d99227beb04bb93debfd28c0ca188ae1bad5e29
This commit is contained in:
Christian Holler 2013-10-18 15:18:18 +02:00
parent 533aaf9e36
commit 22a457203f

View File

@ -4195,10 +4195,6 @@ static const JSFunctionSpecWithHelp shell_functions[] = {
"dissrc([fun])",
" Disassemble functions with source lines."),
JS_FN_HELP("dumpHeap", DumpHeap, 0, 0,
"dumpHeap([fileName[, start[, toFind[, maxDepth[, toIgnore]]]]])",
" Interface to JS_DumpHeap with output sent to file."),
JS_FN_HELP("dumpObject", DumpObject, 1, 0,
"dumpObject()",
" Dump an internal representation of an object."),
@ -4406,6 +4402,10 @@ static const JSFunctionSpecWithHelp fuzzing_unsafe_functions[] = {
" Get a self-hosted value by its name. Note that these values don't get \n"
" cached, so repeatedly getting the same value creates multiple distinct clones."),
JS_FN_HELP("dumpHeap", DumpHeap, 0, 0,
"dumpHeap([fileName[, start[, toFind[, maxDepth[, toIgnore]]]]])",
" Interface to JS_DumpHeap with output sent to file."),
JS_FN_HELP("parent", Parent, 1, 0,
"parent(obj)",
" Returns the parent of obj."),