tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Frame-inl.h (929B)


      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_Frame_inl_h
      8 #define debugger_Frame_inl_h
      9 
     10 #include "debugger/Frame.h"  // for DebuggerFrame
     11 
     12 #include "mozilla/Assertions.h"  // for AssertionConditionType, MOZ_ASSERT
     13 
     14 #include "NamespaceImports.h"  // for Value
     15 
     16 inline bool js::DebuggerFrame::hasGeneratorInfo() const {
     17  return !getReservedSlot(GENERATOR_INFO_SLOT).isUndefined();
     18 }
     19 
     20 inline js::DebuggerFrame::GeneratorInfo* js::DebuggerFrame::generatorInfo()
     21    const {
     22  MOZ_ASSERT(hasGeneratorInfo());
     23  return static_cast<GeneratorInfo*>(
     24      getReservedSlot(GENERATOR_INFO_SLOT).toPrivate());
     25 }
     26 
     27 #endif /* debugger_Frame_inl_h */