Commit 47c3a081 authored by dcarney@chromium.org's avatar dcarney@chromium.org

fix 16045

TBR=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/22169002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16047 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 20739610
......@@ -493,7 +493,8 @@ TEST(EternalHandles) {
for (int i = 0; i < kArrayLength; i++) {
HandleScope scope(isolate);
v8::Handle<v8::Value> local = v8::Utils::ToLocal(eternals->Get(i));
v8::Handle<v8::Value> local =
v8::Utils::ToLocal(eternals->Get(indices[i]));
v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(local);
v8::Handle<v8::Value> value = object->Get(i);
CHECK(value->IsInt32());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment