diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-08 21:10:15 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:24 -0400 |
commit | c6ffa1dbccf938c77ce0516c214412ccc91a4eb0 (patch) | |
tree | b5ce39ff2ef517de3c1f00eba6d7a810983d3aaf /js/src/jsscript.cpp | |
parent | 2f282f729eb3ae17d396682102c890c7d4cd77c4 (diff) | |
download | aura-central-c6ffa1dbccf938c77ce0516c214412ccc91a4eb0.tar.gz |
1320408 - Part 12: Change JSScript::sourceData to static method.
Diffstat (limited to 'js/src/jsscript.cpp')
-rw-r--r-- | js/src/jsscript.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/src/jsscript.cpp b/js/src/jsscript.cpp index 28fb3636c..36060e4c0 100644 --- a/js/src/jsscript.cpp +++ b/js/src/jsscript.cpp @@ -1435,11 +1435,11 @@ JSScript::loadSource(JSContext* cx, ScriptSource* ss, bool* worked) return true; } -JSFlatString* -JSScript::sourceData(JSContext* cx) +/* static */ JSFlatString* +JSScript::sourceData(JSContext* cx, HandleScript script) { - MOZ_ASSERT(scriptSource()->hasSourceData()); - return scriptSource()->substring(cx, sourceStart(), sourceEnd()); + MOZ_ASSERT(script->scriptSource()->hasSourceData()); + return script->scriptSource()->substring(cx, script->sourceStart(), script->sourceEnd()); } JSFlatString* |