Backed out changeset 4191b252db9b (bug 1886734) for causing build bustages @netwerk...
[gecko.git] / js / src / debugger / Debugger-inl.h
blobd578ee34a4f4795ca6cc09b9f538d28ae2b1eaa4
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef debugger_Debugger_inl_h
8 #define debugger_Debugger_inl_h
10 #include "debugger/Debugger.h" // for Debugger, ResumeMode
12 #include "mozilla/Assertions.h" // for AssertionConditionType
14 #include "vm/JSObject.h" // for JSObject
15 #include "vm/NativeObject.h" // for NativeObject, JSObject::is
17 /* static */ inline js::Debugger* js::Debugger::fromJSObject(
18 const JSObject* obj) {
19 MOZ_ASSERT(obj->is<DebuggerInstanceObject>());
20 auto* dbg = &obj->as<DebuggerInstanceObject>();
21 return dbg->maybePtrFromReservedSlot<Debugger>(JSSLOT_DEBUG_DEBUGGER);
24 inline bool js::Debugger::isHookCallAllowed(JSContext* cx) const {
25 // If we are evaluating inside of an eval on a debugger that has an
26 // onNativeCall hook, we want to _only_ call the hooks attached to that
27 // specific debugger.
28 return !cx->insideExclusiveDebuggerOnEval ||
29 this == cx->insideExclusiveDebuggerOnEval;
32 #endif /* debugger_Debugger_inl_h */