Reflect.h (967B)
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_Reflect_h 8 #define builtin_Reflect_h 9 10 #include "js/Class.h" 11 12 struct JSContext; 13 14 namespace JS { 15 class Value; 16 } 17 18 namespace js { 19 20 extern const JSClass ReflectClass; 21 22 [[nodiscard]] extern bool Reflect_getPrototypeOf(JSContext* cx, unsigned argc, 23 JS::Value* vp); 24 25 [[nodiscard]] extern bool Reflect_isExtensible(JSContext* cx, unsigned argc, 26 JS::Value* vp); 27 28 [[nodiscard]] extern bool Reflect_ownKeys(JSContext* cx, unsigned argc, 29 JS::Value* vp); 30 31 } // namespace js 32 33 #endif /* builtin_Reflect_h */