summaryrefslogtreecommitdiff
path: root/js/src/vm/Debugger.cpp
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-08 19:05:28 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-07-18 22:38:22 -0400
commit2d39cef5c9053b5263a24a823bf1f9b498777ccd (patch)
tree81de2c5d99d5ad4be3c1e619d1e9d5ff061e6d9e /js/src/vm/Debugger.cpp
parentcf71ceb831cbac03ebd724ae091fe8d2f8688e25 (diff)
downloadaura-central-2d39cef5c9053b5263a24a823bf1f9b498777ccd.tar.gz
1320408 - Part 3: Remove JSContext* parameter from JSFunction::getBoundFunctionArgument.
Diffstat (limited to 'js/src/vm/Debugger.cpp')
-rw-r--r--js/src/vm/Debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/vm/Debugger.cpp b/js/src/vm/Debugger.cpp
index 988ae413b..5cc054308 100644
--- a/js/src/vm/Debugger.cpp
+++ b/js/src/vm/Debugger.cpp
@@ -9611,7 +9611,7 @@ DebuggerObject::getBoundArguments(JSContext* cx, HandleDebuggerObject object,
if (!result.resize(length))
return false;
for (size_t i = 0; i < length; i++) {
- result[i].set(referent->getBoundFunctionArgument(cx, i));
+ result[i].set(referent->getBoundFunctionArgument(i));
if (!dbg->wrapDebuggeeValue(cx, result[i]))
return false;
}