ShadowRealm.h (1082B)
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 builtin_ShadowRealm_h 8 #define builtin_ShadowRealm_h 9 10 #include "vm/NativeObject.h" 11 12 namespace js { 13 14 class ShadowRealmObject : public NativeObject { 15 public: 16 static const JSClass class_; 17 static const JSClass protoClass_; 18 19 enum { GlobalSlot, SlotCount }; 20 21 static bool construct(JSContext* cx, unsigned argc, Value* vp); 22 23 Realm* getShadowRealm() { 24 MOZ_ASSERT(getWrappedGlobal()); 25 return getWrappedGlobal()->nonCCWRealm(); 26 } 27 28 JSObject* getWrappedGlobal() const { 29 return &getFixedSlot(GlobalSlot).toObject(); 30 } 31 }; 32 33 void ReportPotentiallyDetailedMessage(JSContext* cx, 34 const unsigned detailedError, 35 const unsigned genericError); 36 } // namespace js 37 38 #endif