Debugger-inl.h (1260B)
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/. */ 6 7 #ifndef debugger_Debugger_inl_h 8 #define debugger_Debugger_inl_h 9 10 #include "debugger/Debugger.h" // for Debugger, ResumeMode 11 12 #include "mozilla/Assertions.h" // for AssertionConditionType 13 14 #include "vm/JSObject.h" // for JSObject 15 #include "vm/NativeObject.h" // for NativeObject, JSObject::is 16 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); 22 } 23 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; 30 } 31 32 #endif /* debugger_Debugger_inl_h */