diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-08 19:30:53 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:24 -0400 |
commit | fe20cd26491f8db4e7304d509a2639cfccf26c7e (patch) | |
tree | 09500529d6663a92424b6b55016fe49577273ddd /js/src/jsobj.cpp | |
parent | 549bab83d1d7fa7bb0a15f7852ccffc708d70ab0 (diff) | |
download | UXP-fe20cd26491f8db4e7304d509a2639cfccf26c7e.tar UXP-fe20cd26491f8db4e7304d509a2639cfccf26c7e.tar.gz UXP-fe20cd26491f8db4e7304d509a2639cfccf26c7e.tar.lz UXP-fe20cd26491f8db4e7304d509a2639cfccf26c7e.tar.xz UXP-fe20cd26491f8db4e7304d509a2639cfccf26c7e.zip |
1320408 - Part 8: Change JSObject::reportNotConfigurable and JSObject::reportNotExtensible to static method.
Diffstat (limited to 'js/src/jsobj.cpp')
-rw-r--r-- | js/src/jsobj.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/src/jsobj.cpp b/js/src/jsobj.cpp index f4a524d44..b08e8a619 100644 --- a/js/src/jsobj.cpp +++ b/js/src/jsobj.cpp @@ -2451,7 +2451,7 @@ js::HasOwnDataPropertyPure(JSContext* cx, JSObject* obj, jsid id, bool* result) return true; } -bool +/* static */ bool JSObject::reportReadOnly(JSContext* cx, jsid id, unsigned report) { RootedValue val(cx, IdToValue(id)); @@ -2460,7 +2460,7 @@ JSObject::reportReadOnly(JSContext* cx, jsid id, unsigned report) nullptr, nullptr); } -bool +/* static */ bool JSObject::reportNotConfigurable(JSContext* cx, jsid id, unsigned report) { RootedValue val(cx, IdToValue(id)); @@ -2469,10 +2469,10 @@ JSObject::reportNotConfigurable(JSContext* cx, jsid id, unsigned report) nullptr, nullptr); } -bool -JSObject::reportNotExtensible(JSContext* cx, unsigned report) +/* static */ bool +JSObject::reportNotExtensible(JSContext* cx, HandleObject obj, unsigned report) { - RootedValue val(cx, ObjectValue(*this)); + RootedValue val(cx, ObjectValue(*obj)); return ReportValueErrorFlags(cx, report, JSMSG_OBJECT_NOT_EXTENSIBLE, JSDVG_IGNORE_STACK, val, nullptr, nullptr, nullptr); |