summaryrefslogtreecommitdiffstats
path: root/js/src/vm/AsyncFunction.cpp
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-08 18:45:53 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-07-18 22:38:21 -0400
commite5019fd4cf2142b7fe2cbfedaefcea300390393e (patch)
treed1c7aa013442c768b425f058e4a88b10b1418a0c /js/src/vm/AsyncFunction.cpp
parent9476f2e018856139f92e96e8e738bbbab615e67d (diff)
downloadUXP-e5019fd4cf2142b7fe2cbfedaefcea300390393e.tar
UXP-e5019fd4cf2142b7fe2cbfedaefcea300390393e.tar.gz
UXP-e5019fd4cf2142b7fe2cbfedaefcea300390393e.tar.lz
UXP-e5019fd4cf2142b7fe2cbfedaefcea300390393e.tar.xz
UXP-e5019fd4cf2142b7fe2cbfedaefcea300390393e.zip
1320408 - Part 1: Change JSFunction::getLength and JSFunction::getUnresolvedLength to static method.
Diffstat (limited to 'js/src/vm/AsyncFunction.cpp')
-rw-r--r--js/src/vm/AsyncFunction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/vm/AsyncFunction.cpp b/js/src/vm/AsyncFunction.cpp
index f50c87114..e14b77424 100644
--- a/js/src/vm/AsyncFunction.cpp
+++ b/js/src/vm/AsyncFunction.cpp
@@ -118,7 +118,7 @@ js::WrapAsyncFunctionWithProto(JSContext* cx, HandleFunction unwrapped, HandleOb
RootedAtom funName(cx, unwrapped->explicitName());
uint16_t length;
- if (!unwrapped->getLength(cx, &length))
+ if (!JSFunction::getLength(cx, unwrapped, &length))
return nullptr;
// Steps 3 (partially).