aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/test-typedarrays.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/cctest/test-typedarrays.cc')
-rw-r--r--deps/v8/test/cctest/test-typedarrays.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/deps/v8/test/cctest/test-typedarrays.cc b/deps/v8/test/cctest/test-typedarrays.cc
index b14debdba7..fb4740cb92 100644
--- a/deps/v8/test/cctest/test-typedarrays.cc
+++ b/deps/v8/test/cctest/test-typedarrays.cc
@@ -14,10 +14,12 @@
namespace v8 {
namespace internal {
-void TestArrayBufferViewContents(LocalContext& env, bool should_use_buffer) {
+void TestArrayBufferViewContents(
+ LocalContext& env, // NOLINT(runtime/references)
+ bool should_use_buffer) {
v8::Local<v8::Object> obj_a = v8::Local<v8::Object>::Cast(
env->Global()
- ->Get(v8::Isolate::GetCurrent()->GetCurrentContext(), v8_str("a"))
+ ->Get(env->GetIsolate()->GetCurrentContext(), v8_str("a"))
.ToLocalChecked());
CHECK(obj_a->IsArrayBufferView());
v8::Local<v8::ArrayBufferView> array_buffer_view =
@@ -32,7 +34,6 @@ void TestArrayBufferViewContents(LocalContext& env, bool should_use_buffer) {
}
}
-
TEST(CopyContentsTypedArray) {
LocalContext env;
v8::HandleScope scope(env->GetIsolate());