Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: src/list-inl.h

Issue 8393003: Handlify simple functions of [keyed] store stub compiler. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/list.h ('k') | src/stub-cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/list-inl.h
diff --git a/src/list-inl.h b/src/list-inl.h
index 34fa027370714b686f91a85269e578de4061f7dc..e2c358ceea19c2e4a2654e08dbe54085e077da0c 100644
--- a/src/list-inl.h
+++ b/src/list-inl.h
@@ -237,18 +237,6 @@ int SortedListBSearch(const List<T>& list, T elem) {
}
-template <class T>
Kevin Millikin (Chromium) 2011/10/26 08:48:01 Excellent!
-List<T*>* UnwrapHandleList(List<T*>* destination, List<Handle<T> >* source) {
- ASSERT(destination->is_empty());
- int length = source->length();
- for (int i = 0; i < length; ++i) {
- Handle<T> handle = source->at(i);
- destination->Add(handle.is_null() ? NULL : *handle);
- }
- return destination;
-}
-
-
} } // namespace v8::internal
#endif // V8_LIST_INL_H_
« no previous file with comments | « src/list.h ('k') | src/stub-cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698