#ifndef mozilla_dom_AtomList_h__ #define mozilla_dom_AtomList_h__ #include "jsapi.h" #include "mozilla/dom/GeneratedAtomList.h" namespace mozilla { namespace dom { template T* GetAtomCache(JSContext* aCx) { JSRuntime* rt = JS_GetRuntime(aCx); auto atomCache = static_cast(JS_GetRuntimePrivate(rt)); return static_cast(atomCache); } } // namespace dom } // namespace mozilla #endif // mozilla_dom_AtomList_h__