diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-08 18:54:17 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:22 -0400 |
commit | 739a81958035410ddd9b230354a56c909cc5c816 (patch) | |
tree | a0114c15c2bddcba3592687e6ae510bc831df088 /js/src/jsfuninlines.h | |
parent | e5019fd4cf2142b7fe2cbfedaefcea300390393e (diff) | |
download | UXP-739a81958035410ddd9b230354a56c909cc5c816.tar UXP-739a81958035410ddd9b230354a56c909cc5c816.tar.gz UXP-739a81958035410ddd9b230354a56c909cc5c816.tar.lz UXP-739a81958035410ddd9b230354a56c909cc5c816.tar.xz UXP-739a81958035410ddd9b230354a56c909cc5c816.zip |
1320408 - Part 2: Change JSFunction::getOrCreateScript to static method.
Diffstat (limited to 'js/src/jsfuninlines.h')
-rw-r--r-- | js/src/jsfuninlines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jsfuninlines.h b/js/src/jsfuninlines.h index e134def61..13fe51e26 100644 --- a/js/src/jsfuninlines.h +++ b/js/src/jsfuninlines.h @@ -88,7 +88,7 @@ CloneFunctionObjectIfNotSingleton(JSContext* cx, HandleFunction fun, HandleObjec if (CanReuseScriptForClone(cx->compartment(), fun, parent)) return CloneFunctionReuseScript(cx, fun, parent, kind, newKind, proto); - RootedScript script(cx, fun->getOrCreateScript(cx)); + RootedScript script(cx, JSFunction::getOrCreateScript(cx, fun)); if (!script) return nullptr; RootedScope enclosingScope(cx, script->enclosingScope()); |