summaryrefslogtreecommitdiffstats
path: root/js/src/vm/EnvironmentObject.cpp
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-08 21:33:39 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-07-18 22:38:25 -0400
commit7757e03ccc550b030fb4d342f160ee30a940f23d (patch)
treec5e2ddf55e4dc2cc82ff578cecbac939545558dd /js/src/vm/EnvironmentObject.cpp
parentfcfaa4fbee917f821806a70b2000a91a97948c11 (diff)
downloadUXP-7757e03ccc550b030fb4d342f160ee30a940f23d.tar
UXP-7757e03ccc550b030fb4d342f160ee30a940f23d.tar.gz
UXP-7757e03ccc550b030fb4d342f160ee30a940f23d.tar.lz
UXP-7757e03ccc550b030fb4d342f160ee30a940f23d.tar.xz
UXP-7757e03ccc550b030fb4d342f160ee30a940f23d.zip
1320408 - Part 13: Change DebugEnvironmentProxy::getMaybeSentinelValue to static method.
Diffstat (limited to 'js/src/vm/EnvironmentObject.cpp')
-rw-r--r--js/src/vm/EnvironmentObject.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/src/vm/EnvironmentObject.cpp b/js/src/vm/EnvironmentObject.cpp
index 611f0e194..a5aac2ab4 100644
--- a/js/src/vm/EnvironmentObject.cpp
+++ b/js/src/vm/EnvironmentObject.cpp
@@ -2234,11 +2234,11 @@ DebugEnvironmentProxy::isForDeclarative() const
e.is<LexicalEnvironmentObject>();
}
-bool
-DebugEnvironmentProxy::getMaybeSentinelValue(JSContext* cx, HandleId id, MutableHandleValue vp)
+/* static */ bool
+DebugEnvironmentProxy::getMaybeSentinelValue(JSContext* cx, Handle<DebugEnvironmentProxy*> env,
+ HandleId id, MutableHandleValue vp)
{
- Rooted<DebugEnvironmentProxy*> self(cx, this);
- return DebugEnvironmentProxyHandler::singleton.getMaybeSentinelValue(cx, self, id, vp);
+ return DebugEnvironmentProxyHandler::singleton.getMaybeSentinelValue(cx, env, id, vp);
}
bool