| Index: src/list.h
|
| ===================================================================
|
| --- src/list.h (revision 9808)
|
| +++ src/list.h (working copy)
|
| @@ -165,8 +165,11 @@
|
|
|
| class Map;
|
| class Code;
|
| +template<typename T> class Handle;
|
| typedef List<Map*> MapList;
|
| typedef List<Code*> CodeList;
|
| +typedef List<Handle<Map> > MapHandleList;
|
| +typedef List<Handle<Code> > CodeHandleList;
|
|
|
| // Perform binary search for an element in an already sorted
|
| // list. Returns the index of the element of -1 if it was not found.
|
| @@ -176,6 +179,7 @@
|
| template <typename T>
|
| int SortedListBSearch(const List<T>& list, T elem);
|
|
|
| +
|
| } } // namespace v8::internal
|
|
|
|
|
|
|