diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-08 21:33:39 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:25 -0400 |
commit | 7757e03ccc550b030fb4d342f160ee30a940f23d (patch) | |
tree | c5e2ddf55e4dc2cc82ff578cecbac939545558dd /js/src/vm/EnvironmentObject.h | |
parent | fcfaa4fbee917f821806a70b2000a91a97948c11 (diff) | |
download | UXP-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.h')
-rw-r--r-- | js/src/vm/EnvironmentObject.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/src/vm/EnvironmentObject.h b/js/src/vm/EnvironmentObject.h index 032286116..c527cd1b0 100644 --- a/js/src/vm/EnvironmentObject.h +++ b/js/src/vm/EnvironmentObject.h @@ -872,7 +872,8 @@ class DebugEnvironmentProxy : public ProxyObject // Get a property by 'id', but returns sentinel values instead of throwing // on exceptional cases. - bool getMaybeSentinelValue(JSContext* cx, HandleId id, MutableHandleValue vp); + static bool getMaybeSentinelValue(JSContext* cx, Handle<DebugEnvironmentProxy*> env, + HandleId id, MutableHandleValue vp); // Returns true iff this is a function environment with its own this-binding // (all functions except arrow functions and generator expression lambdas). |