| Index: src/list.h
|
| diff --git a/src/list.h b/src/list.h
|
| index 41666deb2678f47520ef64fc63691cf3676669a2..ea67b8b0c6ce487b70ef031411975bebdf8b49ab 100644
|
| --- a/src/list.h
|
| +++ b/src/list.h
|
| @@ -197,11 +197,13 @@ class List {
|
| };
|
|
|
| class Map;
|
| +class Type;
|
| class Code;
|
| template<typename T> class Handle;
|
| typedef List<Map*> MapList;
|
| typedef List<Code*> CodeList;
|
| typedef List<Handle<Map> > MapHandleList;
|
| +typedef List<Handle<Type> > TypeHandleList;
|
| typedef List<Handle<Code> > CodeHandleList;
|
|
|
| // Perform binary search for an element in an already sorted
|
|
|