#include "include/v8-exception.h"
#include "include/v8-local-handle.h"
#include "include/v8-object.h"
#include "include/v8-template.h"
#include "src/api/api.h"
#include "src/objects/js-array-inl.h"
#include "src/objects/objects-inl.h"
#include "src/runtime/runtime.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8::internal {
using RuntimeTest = TestWithContext;
TEST_F(RuntimeTest, ReturnsPrototype) { … }
bool AccessCheck(Local<v8::Context> accessing_context,
Local<v8::Object> accessed_object, Local<Value> data) { … }
TEST_F(RuntimeTest, DoesNotReturnPrototypeWhenInacessible) { … }
#if V8_ENABLE_WEBASSEMBLY
TEST_F(RuntimeTest, WasmTableWithoutInstance) { … }
#endif
}