TBR=svenpanne@chromium.org
BUG=
Review URL: https://codereview.chromium.org/
17030007
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15144
ce2b1a6d-e550-0410-aec6-
3dcde31c8c00
String* str = global.ClearAndLeak();
CHECK(global.IsEmpty());
CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count + 1);
- v8::Persistent<String>* new_global =
- reinterpret_cast<v8::Persistent<String>*>(&str);
- new_global->Dispose();
+ global_handles->Destroy(reinterpret_cast<i::Object**>(str));
CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count);
}