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/jit/IonAnalysis.cpp | |
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/jit/IonAnalysis.cpp')
-rw-r--r-- | js/src/jit/IonAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/jit/IonAnalysis.cpp b/js/src/jit/IonAnalysis.cpp index 41c71c9c3..90fa1864a 100644 --- a/js/src/jit/IonAnalysis.cpp +++ b/js/src/jit/IonAnalysis.cpp @@ -4132,7 +4132,7 @@ CmpInstructions(const void* a, const void* b) } bool -jit::AnalyzeNewScriptDefiniteProperties(JSContext* cx, JSFunction* fun, +jit::AnalyzeNewScriptDefiniteProperties(JSContext* cx, HandleFunction fun, ObjectGroup* group, HandlePlainObject baseobj, Vector<TypeNewScript::Initializer>* initializerList) { @@ -4142,7 +4142,7 @@ jit::AnalyzeNewScriptDefiniteProperties(JSContext* cx, JSFunction* fun, // which will definitely be added to the created object before it has a // chance to escape and be accessed elsewhere. - RootedScript script(cx, fun->getOrCreateScript(cx)); + RootedScript script(cx, JSFunction::getOrCreateScript(cx, fun)); if (!script) return false; |