#include "include/v8-context.h"
#include "include/v8-function.h"
#include "include/v8-isolate.h"
#include "include/v8-local-handle.h"
#include "include/v8-primitive.h"
#include "include/v8-template.h"
#include "src/objects/objects-inl.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 {
namespace {
using ObjectTest = TestWithContext;
void accessor_name_getter_callback(Local<Name>,
const PropertyCallbackInfo<Value>&) { … }
TEST_F(ObjectTest, SetAccessorWhenUnconfigurablePropAlreadyDefined) { … }
using LapContextTest = TestWithIsolate;
TEST_F(LapContextTest, CurrentContextInLazyAccessorOnPrototype) { … }
TEST_F(LapContextTest, CurrentContextInLazyAccessorOnPlatformObject) { … }
TEST_F(LapContextTest, CurrentContextInLazyAccessorOnInterface) { … }
}
}